diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ngx_connection.h | 1 | ||||
-rw-r--r-- | src/core/ngx_core.h | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index f7fa3f3fe..e82ae583e 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -102,7 +102,6 @@ struct ngx_connection_s { unsigned pipeline:1; unsigned unexpected_eof:1; unsigned tcp_nopush:1; - unsigned tcp_nopush_enabled:1; #if (HAVE_IOCP) unsigned accept_context_updated:1; #endif diff --git a/src/core/ngx_core.h b/src/core/ngx_core.h index 1b885c653..3a0e9dd2e 100644 --- a/src/core/ngx_core.h +++ b/src/core/ngx_core.h @@ -36,12 +36,12 @@ typedef struct ngx_connection_s ngx_connection_t; #define NGX_OK 0 #define NGX_ERROR -1 #define NGX_AGAIN -2 -#define NGX_DONE -3 -/* -#define NGX_BUSY -3 -*/ #define NGX_DECLINED -4 +#define NGX_ABORT -5 + /* +#define NGX_DONE -3 +#define NGX_BUSY -3 #define NGX_ALERT -5 */ |