This commit is contained in:
Roman Arutyunyan 2016-06-27 18:42:29 +03:00
parent e0b0fa6bf5
commit dcf3d20874

View File

@ -105,16 +105,16 @@ static ngx_stream_module_t ngx_stream_limit_conn_module_ctx = {
ngx_module_t ngx_stream_limit_conn_module = {
NGX_MODULE_V1,
&ngx_stream_limit_conn_module_ctx, /* module context */
ngx_stream_limit_conn_commands, /* module directives */
NGX_STREAM_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
&ngx_stream_limit_conn_module_ctx, /* module context */
ngx_stream_limit_conn_commands, /* module directives */
NGX_STREAM_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
NGX_MODULE_V1_PADDING
};