Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ngx_connection.h')
-rw-r--r--src/core/ngx_connection.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h
index 1c19aa374..a94640d74 100644
--- a/src/core/ngx_connection.h
+++ b/src/core/ngx_connection.h
@@ -30,16 +30,18 @@ struct ngx_connection_s {
off_t sent;
- ngx_log_t *log;
int (*handler)(ngx_connection_t *c);
- ngx_server_t *server;
+ void *ctx;
ngx_server_t *servers;
+
ngx_pool_t *pool;
+ ngx_log_t *log;
int family;
struct sockaddr *sockaddr;
socklen_t socklen;
- size_t addr;
+ int addr;
+ int addr_text_max_len;
ngx_str_t addr_text;
ngx_hunk_t *buffer;