diff options
Diffstat (limited to 'src/http/ngx_http_core.h')
-rw-r--r-- | src/http/ngx_http_core.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/http/ngx_http_core.h b/src/http/ngx_http_core.h new file mode 100644 index 000000000..976ae546a --- /dev/null +++ b/src/http/ngx_http_core.h @@ -0,0 +1,16 @@ +#ifndef _NGX_HTTP_CORE_H_INCLUDED_ +#define _NGX_HTTP_CORE_H_INCLUDED_ + + +#include <ngx_http.h> + + +typedef struct { + time_t send_timeout; +} ngx_http_core_conf_t; + + +extern ngx_http_module_t ngx_http_core_module; + + +#endif /* _NGX_HTTP_CORE_H_INCLUDED_ */ |