summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/proxy/ngx_http_proxy_handler.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-08-01 14:56:33 +0000
committerIgor Sysoev <igor@sysoev.ru>2003-08-01 14:56:33 +0000
commit044105067d5ac2178c57b4f8f4ffa3c877381690 (patch)
tree68f8b6cb95b70d49cfe2bbe7dda98cff94d983e7 /src/http/modules/proxy/ngx_http_proxy_handler.h
parentbc6f9f2359ad59e04b9a178331d99dfce7d1ab93 (diff)
downloadnginx-044105067d5ac2178c57b4f8f4ffa3c877381690.tar.gz
nginx-044105067d5ac2178c57b4f8f4ffa3c877381690.tar.bz2
nginx-0.0.1-2003-08-01-18:56:33 import
Diffstat (limited to '')
-rw-r--r--src/http/modules/proxy/ngx_http_proxy_handler.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/http/modules/proxy/ngx_http_proxy_handler.h b/src/http/modules/proxy/ngx_http_proxy_handler.h
new file mode 100644
index 000000000..7f85417c4
--- /dev/null
+++ b/src/http/modules/proxy/ngx_http_proxy_handler.h
@@ -0,0 +1,23 @@
+#ifndef _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_
+#define _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_
+
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+#include <ngx_event.h>
+#include <ngx_http.h>
+
+
+typedef struct ngx_http_proxy_ctx_s ngx_http_proxy_ctx_t;
+
+struct ngx_http_proxy_ctx_s {
+ ngx_peer_connection_t upstream;
+ ngx_peer_t *peer;
+
+ ngx_http_request_t *request;
+
+ char *action;
+};
+
+
+#endif /* _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_ */