comparison src/core/ngx_string.h @ 348:e10168d6e371 NGINX_0_6_18

nginx 0.6.18 *) Change: now the ngx_http_userid_module adds start time microseconds to the cookie field contains a pid value. *) Change: now the full request line instead of URI only is written to error_log. *) Feature: variables support in the "proxy_pass" directive. *) Feature: the "resolver" and "resolver_timeout" directives. *) Feature: now the directive "add_header last-modified ''" deletes a "Last-Modified" response header line. *) Bugfix: the "limit_rate" directive did not allow to use full throughput, even if limit value was very high.
author Igor Sysoev <http://sysoev.ru>
date Tue, 27 Nov 2007 00:00:00 +0300
parents 4276c2f1f434
children b743d290eb3b
comparison
equal deleted inserted replaced
347:d53199b68e17 348:e10168d6e371
112 112
113 #endif 113 #endif
114 114
115 115
116 /* msvc and icc7 compile memcmp() to the inline loop */ 116 /* msvc and icc7 compile memcmp() to the inline loop */
117 #define ngx_memcmp memcmp 117 #define ngx_memcmp(s1, s2, n) memcmp((const char *) s1, (const char *) s2, n)
118 118
119 119
120 u_char *ngx_cpystrn(u_char *dst, u_char *src, size_t n); 120 u_char *ngx_cpystrn(u_char *dst, u_char *src, size_t n);
121 u_char *ngx_pstrdup(ngx_pool_t *pool, ngx_str_t *src); 121 u_char *ngx_pstrdup(ngx_pool_t *pool, ngx_str_t *src);
122 u_char * ngx_cdecl ngx_sprintf(u_char *buf, const char *fmt, ...); 122 u_char * ngx_cdecl ngx_sprintf(u_char *buf, const char *fmt, ...);