diff options
Diffstat (limited to 'src/http/ngx_http_core.h')
-rw-r--r-- | src/http/ngx_http_core.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/http/ngx_http_core.h b/src/http/ngx_http_core.h index 976ae546a..e9846f82c 100644 --- a/src/http/ngx_http_core.h +++ b/src/http/ngx_http_core.h @@ -6,9 +6,17 @@ typedef struct { - time_t send_timeout; + int dummy; } ngx_http_core_conf_t; +typedef struct { + int dummy; +} ngx_http_core_srv_conf_t; + +typedef struct { + time_t send_timeout; +} ngx_http_core_loc_conf_t; + extern ngx_http_module_t ngx_http_core_module; |