comparison src/core/ngx_string.h @ 472:09f0ef15d544 NGINX_0_7_48

nginx 0.7.48 *) Feature: the "proxy_cache_key" directive. *) Bugfix: now nginx takes into account the "X-Accel-Expires", "Expires", and "Cache-Control" header lines in a backend response. *) Bugfix: now nginx caches responses for the GET requests only. *) Bugfix: the "fastcgi_cache_key" directive was not inherited. *) Bugfix: the $arg_... variables did not work with SSI subrequests. Thanks to Maxim Dounin. *) Bugfix: nginx could not be built with uclibc library. Thanks to Timothy Redaelli. *) Bugfix: nginx could not be built on OpenBSD; the bug had appeared in 0.7.46.
author Igor Sysoev <http://sysoev.ru>
date Mon, 06 Apr 2009 00:00:00 +0400
parents 6ebbca3d5ed7
children ed5e10fb40fc
comparison
equal deleted inserted replaced
471:0cc33540f2e0 472:09f0ef15d544
147 147
148 u_char *ngx_strnstr(u_char *s1, char *s2, size_t n); 148 u_char *ngx_strnstr(u_char *s1, char *s2, size_t n);
149 149
150 u_char *ngx_strstrn(u_char *s1, char *s2, size_t n); 150 u_char *ngx_strstrn(u_char *s1, char *s2, size_t n);
151 u_char *ngx_strcasestrn(u_char *s1, char *s2, size_t n); 151 u_char *ngx_strcasestrn(u_char *s1, char *s2, size_t n);
152 u_char *ngx_strlcasestrn(u_char *s1, u_char *last, u_char *s2, size_t n);
152 153
153 ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n); 154 ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n);
154 ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n); 155 ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n);
155 ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2); 156 ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2);
156 157