comparison src/core/ngx_string.h @ 596:6c96fdd2dfc3 NGINX_0_8_50

nginx 0.8.50 *) Feature: the "secure_link", "secure_link_md5", and "secure_link_expires" directives of the ngx_http_secure_link_module. *) Feature: the -q switch. Thanks to Gena Makhomed. *) Bugfix: worker processes may got caught in an endless loop during reconfiguration, if a caching was used; the bug had appeared in 0.8.48. *) Bugfix: in the "gzip_disable" directive. Thanks to Derrick Petzold. *) Bugfix: nginx/Windows could not send stop, quit, reopen, and reload signals to a process run in other session.
author Igor Sysoev <http://sysoev.ru>
date Thu, 02 Sep 2010 00:00:00 +0400
parents c456a023113c
children
comparison
equal deleted inserted replaced
595:57dcc025db4f 596:6c96fdd2dfc3
176 #define ngx_base64_encoded_length(len) (((len + 2) / 3) * 4) 176 #define ngx_base64_encoded_length(len) (((len + 2) / 3) * 4)
177 #define ngx_base64_decoded_length(len) (((len + 3) / 4) * 3) 177 #define ngx_base64_decoded_length(len) (((len + 3) / 4) * 3)
178 178
179 void ngx_encode_base64(ngx_str_t *dst, ngx_str_t *src); 179 void ngx_encode_base64(ngx_str_t *dst, ngx_str_t *src);
180 ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src); 180 ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src);
181 ngx_int_t ngx_decode_base64url(ngx_str_t *dst, ngx_str_t *src);
181 182
182 uint32_t ngx_utf8_decode(u_char **p, size_t n); 183 uint32_t ngx_utf8_decode(u_char **p, size_t n);
183 size_t ngx_utf8_length(u_char *p, size_t n); 184 size_t ngx_utf8_length(u_char *p, size_t n);
184 u_char *ngx_utf8_cpystrn(u_char *dst, u_char *src, size_t n, size_t len); 185 u_char *ngx_utf8_cpystrn(u_char *dst, u_char *src, size_t n, size_t len);
185 186