diff options
author | Igor Sysoev <igor@sysoev.ru> | 2002-10-04 17:58:04 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2002-10-04 17:58:04 +0000 |
commit | 2ba1ee0930adc22206cad54c46fc682485933963 (patch) | |
tree | 2ebfae2a782c4793eb8ba30609f4240661fc497f /src/core/ngx_connection.h | |
parent | 31f8818eb110d18e58fef72684418c33ddbd7a0b (diff) | |
download | nginx-2ba1ee0930adc22206cad54c46fc682485933963.tar.gz nginx-2ba1ee0930adc22206cad54c46fc682485933963.zip |
nginx-0.0.1-2002-10-04-21:58:04 import
Diffstat (limited to 'src/core/ngx_connection.h')
-rw-r--r-- | src/core/ngx_connection.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index 2794a1c72..2450ea3b8 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -14,9 +14,13 @@ typedef struct ngx_connection_s ngx_connection_t; #endif struct ngx_connection_s { - ngx_socket_t fd; + ngx_socket_t fd; void *data; + /* STUB */ + ngx_array_t *requests; + int requests_len; + #ifdef NGX_EVENT ngx_event_t *read; ngx_event_t *write; |