comparison src/http/modules/proxy/ngx_http_proxy_handler.h @ 164:84036764e215

nginx-0.0.1-2003-10-29-11:30:44 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 29 Oct 2003 08:30:44 +0000
parents fb61ba77beba
children edf29bb717da
comparison
equal deleted inserted replaced
163:fb61ba77beba 164:84036764e215
42 ngx_peers_t *peers; 42 ngx_peers_t *peers;
43 } ngx_http_proxy_loc_conf_t; 43 } ngx_http_proxy_loc_conf_t;
44 44
45 45
46 typedef struct { 46 typedef struct {
47 ngx_table_t *headers; /* it must be first field */
48
47 ngx_table_elt_t *date; 49 ngx_table_elt_t *date;
48 ngx_table_elt_t *server; 50 ngx_table_elt_t *server;
49 ngx_table_elt_t *connection; 51 ngx_table_elt_t *connection;
50 ngx_table_elt_t *content_type; 52 ngx_table_elt_t *content_type;
51 ngx_table_elt_t *content_length; 53 ngx_table_elt_t *content_length;
52 ngx_table_elt_t *last_modified; 54 ngx_table_elt_t *last_modified;
53 ngx_table_elt_t *accept_ranges; 55 ngx_table_elt_t *accept_ranges;
54 56
55 off_t content_length_n; 57 off_t content_length_n;
56
57 ngx_table_t *headers;
58 } ngx_http_proxy_headers_in_t; 58 } ngx_http_proxy_headers_in_t;
59 59
60 60
61 typedef struct ngx_http_proxy_ctx_s ngx_http_proxy_ctx_t; 61 typedef struct ngx_http_proxy_ctx_s ngx_http_proxy_ctx_t;
62 62