comparison src/core/ngx_connection.h @ 6602:bcd442b585f0

Removed unused flag accept_context_updated from ngx_event_t. Also, removed practically unused flag accept_context_updated from ngx_connection_t.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 29 Jun 2016 14:30:00 +0300
parents 28c76d9d75b7
children cebf5fed00bf
comparison
equal deleted inserted replaced
6601:d452cb27639f 6602:bcd442b585f0
183 unsigned sndlowat:1; 183 unsigned sndlowat:1;
184 unsigned tcp_nodelay:2; /* ngx_connection_tcp_nodelay_e */ 184 unsigned tcp_nodelay:2; /* ngx_connection_tcp_nodelay_e */
185 unsigned tcp_nopush:2; /* ngx_connection_tcp_nopush_e */ 185 unsigned tcp_nopush:2; /* ngx_connection_tcp_nopush_e */
186 186
187 unsigned need_last_buf:1; 187 unsigned need_last_buf:1;
188
189 #if (NGX_HAVE_IOCP)
190 unsigned accept_context_updated:1;
191 #endif
192 188
193 #if (NGX_HAVE_AIO_SENDFILE) 189 #if (NGX_HAVE_AIO_SENDFILE)
194 unsigned busy_count:2; 190 unsigned busy_count:2;
195 #endif 191 #endif
196 192