diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-01-11 15:26:57 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-01-11 15:26:57 +0000 |
commit | df3254aa49c80b350ff4fa2eb50baf3cafbed71c (patch) | |
tree | 15a72baf5205f698354f529e4ba2d5846b558c4a /src/core/ngx_connection.h | |
parent | 04ebcd942969bc479b4cc680eab6bf01f488f12f (diff) | |
download | nginx-release-0.3.20.tar.gz nginx-release-0.3.20.zip |
nginx-0.3.20-RELEASE importrelease-0.3.20
*) Bugfix: in SSI handling.
*) Bugfix: the ngx_http_memcached_module did not support the keys in
the "/usr?args" form.
Diffstat (limited to 'src/core/ngx_connection.h')
-rw-r--r-- | src/core/ngx_connection.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index 38a59bcb1..43733aab0 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -93,6 +93,10 @@ typedef enum { } ngx_connection_tcp_nopush_e; +#define NGX_LOWLEVEL_BUFFERED 0x0000000f +#define NGX_SSL_BUFFERED 0x00000001 + + struct ngx_connection_s { void *data; ngx_event_t *read; @@ -134,9 +138,10 @@ struct ngx_connection_s { ngx_atomic_uint_t number; + ngx_uint_t buffered; + unsigned log_error:2; /* ngx_connection_log_error_e */ - unsigned buffered:1; unsigned single_connection:1; unsigned unexpected_eof:1; unsigned timedout:1; |