comparison src/os/win32/ngx_wsasend_chain.c @ 6474:2cd019520210

Style.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 30 Mar 2016 11:52:16 +0300
parents de68ed551bfb
children ecf2a9002b37
comparison
equal deleted inserted replaced
6473:9d7326d3f474 6474:2cd019520210
231 return NGX_CHAIN_ERROR; 231 return NGX_CHAIN_ERROR;
232 } 232 }
233 233
234 } else if (ngx_event_flags & NGX_USE_IOCP_EVENT) { 234 } else if (ngx_event_flags & NGX_USE_IOCP_EVENT) {
235 235
236 /* 236 /*
237 * if a socket was bound with I/O completion port then 237 * if a socket was bound with I/O completion port then
238 * GetQueuedCompletionStatus() would anyway return its status 238 * GetQueuedCompletionStatus() would anyway return its status
239 * despite that WSASend() was already complete 239 * despite that WSASend() was already complete
240 */ 240 */
241 241
242 wev->active = 1; 242 wev->active = 1;
243 return in; 243 return in;
244 } 244 }
245 245