comparison src/http/modules/proxy/ngx_http_proxy_handler.h @ 124:842a78cebbb7

nginx-0.0.1-2003-08-01-18:56:33 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 01 Aug 2003 14:56:33 +0000
parents
children 049e78b1f852
comparison
equal deleted inserted replaced
123:b75602822f64 124:842a78cebbb7
1 #ifndef _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_
2 #define _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_
3
4
5 #include <ngx_config.h>
6 #include <ngx_core.h>
7 #include <ngx_event.h>
8 #include <ngx_http.h>
9
10
11 typedef struct ngx_http_proxy_ctx_s ngx_http_proxy_ctx_t;
12
13 struct ngx_http_proxy_ctx_s {
14 ngx_peer_connection_t upstream;
15 ngx_peer_t *peer;
16
17 ngx_http_request_t *request;
18
19 char *action;
20 };
21
22
23 #endif /* _NGX_HTTP_PROXY_HANDLER_H_INCLUDED_ */