diff options
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; |