diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-06-01 06:04:46 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-01 06:04:46 +0000 |
commit | 67f450d7bc2b847f07ad302fa3fd6fa46da784f0 (patch) | |
tree | ad432c07b62f9145f78ba569e9a1ed51a3d41e17 /src/core/ngx_connection.h | |
parent | 369145cef1971e4273dc59340689c2d96f84d18a (diff) | |
download | nginx-67f450d7bc2b847f07ad302fa3fd6fa46da784f0.tar.gz nginx-67f450d7bc2b847f07ad302fa3fd6fa46da784f0.zip |
nginx-0.0.3-2004-06-01-10:04:46 import
Diffstat (limited to 'src/core/ngx_connection.h')
-rw-r--r-- | src/core/ngx_connection.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index af85e7d81..ecd3c8bc4 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -60,6 +60,13 @@ typedef enum { } ngx_connection_log_error_e; +typedef enum { + NGX_TCP_NOPUSH_DISABLED = -1, + NGX_TCP_NOPUSH_UNSET = 0, + NGX_TCP_NOPUSH_SET +} ngx_connection_tcp_nopush_e; + + struct ngx_connection_s { void *data; ngx_event_t *read; |