comparison src/http/ngx_http_headers.c @ 287:35a6a9df2d25

nginx-0.0.2-2004-03-12-19:57:08 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 12 Mar 2004 16:57:08 +0000
parents fc8dc489247e
children 87e73f067470
comparison
equal deleted inserted replaced
286:fc8dc489247e 287:35a6a9df2d25
26 26
27 { ngx_string("Authorization"), 27 { ngx_string("Authorization"),
28 offsetof(ngx_http_headers_in_t, authorization) }, 28 offsetof(ngx_http_headers_in_t, authorization) },
29 29
30 { ngx_string("Keep-Alive"), offsetof(ngx_http_headers_in_t, keep_alive) }, 30 { ngx_string("Keep-Alive"), offsetof(ngx_http_headers_in_t, keep_alive) },
31
32 #if (NGX_HTTP_PROXY)
33 { ngx_string("X-Forwarded-For"),
34 offsetof(ngx_http_headers_in_t, x_forwarded_for) },
35 #endif
31 36
32 { ngx_null_string, 0 } 37 { ngx_null_string, 0 }
33 }; 38 };
34 39
35 40