diff options
Diffstat (limited to 'src/http/modules/ngx_http_event_proxy_handler.h')
-rw-r--r-- | src/http/modules/ngx_http_event_proxy_handler.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_event_proxy_handler.h b/src/http/modules/ngx_http_event_proxy_handler.h new file mode 100644 index 000000000..85c2e793c --- /dev/null +++ b/src/http/modules/ngx_http_event_proxy_handler.h @@ -0,0 +1,18 @@ +#ifndef _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_ +#define _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_ + + +#include <ngx_config.h> +#include <ngx_array.h> +#include <ngx_http.h> + + +typedef struct { + int dummy; +} ngx_http_proxy_ctx_t; + + +extern ngx_http_module_t ngx_http_proxy_module; + + +#endif /* _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_ */ |