comparison src/core/ngx_connection.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 c04fa65fe604
children b9763778e212
comparison
equal deleted inserted replaced
583:39e50617266a 584:016632f0fb18
66 unsigned delete_deferred:1; 66 unsigned delete_deferred:1;
67 unsigned add_deferred:1; 67 unsigned add_deferred:1;
68 #ifdef SO_ACCEPTFILTER 68 #ifdef SO_ACCEPTFILTER
69 char *accept_filter; 69 char *accept_filter;
70 #endif 70 #endif
71 #endif
72 #if (NGX_HAVE_SETFIB)
73 int setfib;
71 #endif 74 #endif
72 75
73 }; 76 };
74 77
75 78