From 4956ac510858c5bc32945bcb87a460b91440ad3e Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 4 Apr 2011 12:26:53 +0000 Subject: reuse keepalive connections if there are no free worker connections patch by Maxim Dounin --- src/core/ngx_cycle.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/ngx_cycle.h') diff --git a/src/core/ngx_cycle.h b/src/core/ngx_cycle.h index d96c85ffa..e14983d6f 100644 --- a/src/core/ngx_cycle.h +++ b/src/core/ngx_cycle.h @@ -44,6 +44,8 @@ struct ngx_cycle_s { ngx_connection_t *free_connections; ngx_uint_t free_connection_n; + ngx_queue_t reusable_connections_queue; + ngx_array_t listening; ngx_array_t pathes; ngx_list_t open_files; -- cgit