comparison src/http/ngx_http_upstream.h @ 584:016632f0fb18 NGINX_0_8_44

nginx 0.8.44 *) Change: now nginx does not cache by default backend responses, if they have a "Set-Cookie" header line. *) Feature: the "listen" directive supports the "setfib" parameter. Thanks to Andrew Filonov. *) Bugfix: the "sub_filter" directive might change character case on partial match. *) Bugfix: compatibility with HP/UX. *) Bugfix: compatibility with AIX xcl_r compiler. *) Bugfix: nginx treated a large SSLv2 packets as plain requests. Thanks to Miroslaw Jaworski.
author Igor Sysoev <http://sysoev.ru>
date Mon, 05 Jul 2010 00:00:00 +0400
parents ff463db0be31
children b6a5942a4e6a
comparison
equal deleted inserted replaced
583:39e50617266a 584:016632f0fb18
41 41
42 #define NGX_HTTP_UPSTREAM_IGN_XA_REDIRECT 0x00000002 42 #define NGX_HTTP_UPSTREAM_IGN_XA_REDIRECT 0x00000002
43 #define NGX_HTTP_UPSTREAM_IGN_XA_EXPIRES 0x00000004 43 #define NGX_HTTP_UPSTREAM_IGN_XA_EXPIRES 0x00000004
44 #define NGX_HTTP_UPSTREAM_IGN_EXPIRES 0x00000008 44 #define NGX_HTTP_UPSTREAM_IGN_EXPIRES 0x00000008
45 #define NGX_HTTP_UPSTREAM_IGN_CACHE_CONTROL 0x00000010 45 #define NGX_HTTP_UPSTREAM_IGN_CACHE_CONTROL 0x00000010
46 #define NGX_HTTP_UPSTREAM_IGN_SET_COOKIE 0x00000020
46 47
47 48
48 typedef struct { 49 typedef struct {
49 ngx_msec_t bl_time; 50 ngx_msec_t bl_time;
50 ngx_uint_t bl_state; 51 ngx_uint_t bl_state;
335 uscf->srv_conf[module.ctx_index] 336 uscf->srv_conf[module.ctx_index]
336 337
337 338
338 extern ngx_module_t ngx_http_upstream_module; 339 extern ngx_module_t ngx_http_upstream_module;
339 extern ngx_conf_bitmask_t ngx_http_upstream_cache_method_mask[]; 340 extern ngx_conf_bitmask_t ngx_http_upstream_cache_method_mask[];
341 extern ngx_conf_bitmask_t ngx_http_upstream_ignore_headers_masks[];
340 342
341 343
342 #endif /* _NGX_HTTP_UPSTREAM_H_INCLUDED_ */ 344 #endif /* _NGX_HTTP_UPSTREAM_H_INCLUDED_ */