diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2016-03-30 11:52:16 +0300 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2016-03-30 11:52:16 +0300 |
| commit | 7ad57da59821294255610545b2b5ce07e74124a5 (patch) | |
| tree | 91bb44ad5950b703d0f49a8744f0b9b08cf29f11 /src/event/modules/ngx_iocp_module.c | |
| parent | dfbc51a8cc850154fe8839408f32c7e322f5cdf0 (diff) | |
| download | nginx-7ad57da59821294255610545b2b5ce07e74124a5.tar.gz nginx-7ad57da59821294255610545b2b5ce07e74124a5.tar.bz2 | |
Style.
Diffstat (limited to 'src/event/modules/ngx_iocp_module.c')
| -rw-r--r-- | src/event/modules/ngx_iocp_module.c | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/event/modules/ngx_iocp_module.c b/src/event/modules/ngx_iocp_module.c index e3847077e..8f163e3e3 100644 --- a/src/event/modules/ngx_iocp_module.c +++ b/src/event/modules/ngx_iocp_module.c @@ -27,28 +27,28 @@ static ngx_str_t iocp_name = ngx_string("iocp"); static ngx_command_t ngx_iocp_commands[] = { - {ngx_string("iocp_threads"), - NGX_EVENT_CONF|NGX_CONF_TAKE1, - ngx_conf_set_num_slot, - 0, - offsetof(ngx_iocp_conf_t, threads), - NULL}, - - {ngx_string("post_acceptex"), - NGX_EVENT_CONF|NGX_CONF_TAKE1, - ngx_conf_set_num_slot, - 0, - offsetof(ngx_iocp_conf_t, post_acceptex), - NULL}, - - {ngx_string("acceptex_read"), - NGX_EVENT_CONF|NGX_CONF_FLAG, - ngx_conf_set_flag_slot, - 0, - offsetof(ngx_iocp_conf_t, acceptex_read), - NULL}, - - ngx_null_command + { ngx_string("iocp_threads"), + NGX_EVENT_CONF|NGX_CONF_TAKE1, + ngx_conf_set_num_slot, + 0, + offsetof(ngx_iocp_conf_t, threads), + NULL }, + + { ngx_string("post_acceptex"), + NGX_EVENT_CONF|NGX_CONF_TAKE1, + ngx_conf_set_num_slot, + 0, + offsetof(ngx_iocp_conf_t, post_acceptex), + NULL }, + + { ngx_string("acceptex_read"), + NGX_EVENT_CONF|NGX_CONF_FLAG, + ngx_conf_set_flag_slot, + 0, + offsetof(ngx_iocp_conf_t, acceptex_read), + NULL }, + + ngx_null_command }; |
