comparison src/core/ngx_connection.h @ 5104:93713d4b99c3

Removed c->single_connection flag. The c->single_connection was intended to be used as lock mechanism to serialize modifications of request object from several threads working with client and upstream connections. The flag is redundant since threads in nginx have never been used that way.
author Valentin Bartenev <vbart@nginx.com>
date Thu, 07 Mar 2013 18:07:16 +0000
parents bdcdbdf35b52
children 692afcea9d0d
comparison
equal deleted inserted replaced
5103:05a56ebb084a 5104:93713d4b99c3
150 150
151 unsigned buffered:8; 151 unsigned buffered:8;
152 152
153 unsigned log_error:3; /* ngx_connection_log_error_e */ 153 unsigned log_error:3; /* ngx_connection_log_error_e */
154 154
155 unsigned single_connection:1;
156 unsigned unexpected_eof:1; 155 unsigned unexpected_eof:1;
157 unsigned timedout:1; 156 unsigned timedout:1;
158 unsigned error:1; 157 unsigned error:1;
159 unsigned destroyed:1; 158 unsigned destroyed:1;
160 159