comparison src/core/ngx_connection.h @ 344:e366ba5db8f8

nginx-0.0.3-2004-06-01-10:04:46 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 01 Jun 2004 06:04:46 +0000
parents 6bdf858bff8c
children 55e496a8ece3
comparison
equal deleted inserted replaced
343:6bdf858bff8c 344:e366ba5db8f8
58 NGX_ERROR_INFO, 58 NGX_ERROR_INFO,
59 NGX_ERROR_IGNORE_ECONNRESET 59 NGX_ERROR_IGNORE_ECONNRESET
60 } ngx_connection_log_error_e; 60 } ngx_connection_log_error_e;
61 61
62 62
63 typedef enum {
64 NGX_TCP_NOPUSH_DISABLED = -1,
65 NGX_TCP_NOPUSH_UNSET = 0,
66 NGX_TCP_NOPUSH_SET
67 } ngx_connection_tcp_nopush_e;
68
69
63 struct ngx_connection_s { 70 struct ngx_connection_s {
64 void *data; 71 void *data;
65 ngx_event_t *read; 72 ngx_event_t *read;
66 ngx_event_t *write; 73 ngx_event_t *write;
67 74