From df3254aa49c80b350ff4fa2eb50baf3cafbed71c Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 11 Jan 2006 15:26:57 +0000 Subject: nginx-0.3.20-RELEASE import *) Bugfix: in SSI handling. *) Bugfix: the ngx_http_memcached_module did not support the keys in the "/usr?args" form. --- src/core/ngx_connection.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/core/ngx_connection.h') 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; -- cgit