comparison src/http/modules/ngx_http_event_proxy_handler.h @ 21:df7fb216a149

nginx-0.0.1-2002-12-04-19:29:40 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 04 Dec 2002 16:29:40 +0000
parents a649c0a0adb3
children aa3b53e74728
comparison
equal deleted inserted replaced
20:a649c0a0adb3 21:df7fb216a149
6 #include <ngx_array.h> 6 #include <ngx_array.h>
7 #include <ngx_http.h> 7 #include <ngx_http.h>
8 8
9 9
10 typedef struct { 10 typedef struct {
11 int dummy;
12 } ngx_http_proxy_header_in_t;
13
14 typedef struct {
11 ngx_chain_t *out; 15 ngx_chain_t *out;
16
17 ngx_hunk_t *hunk;
18
19 ngx_http_proxy_header_in_t *header_in;
12 } ngx_http_proxy_ctx_t; 20 } ngx_http_proxy_ctx_t;
13 21
14 22
15 extern ngx_http_module_t ngx_http_proxy_module; 23 extern ngx_http_module_t ngx_http_proxy_module;
16 24