diff src/core/ngx_string.h @ 302:9b7db0df50f0 NGINX_0_5_21

nginx 0.5.21 *) Bugfix: if server has more than about ten locations, then regex locations might be choosen not in that order as they were specified. *) Bugfix: a worker process may got caught in an endless loop on 64-bit platform, if the 33-rd or next in succession backend has failed. Thanks to Anton Povarov. *) Bugfix: a bus error might occur on Solaris/sparc64 if the PCRE library was used. Thanks to Andrei Nigmatulin. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 28 May 2007 00:00:00 +0400
parents 27d9d1f26b38
children 24def6198d7f
line wrap: on
line diff
--- a/src/core/ngx_string.h
+++ b/src/core/ngx_string.h
@@ -136,25 +136,27 @@ ngx_int_t ngx_decode_base64(ngx_str_t *d
 
 uint32_t ngx_utf_decode(u_char **p, size_t n);
 size_t ngx_utf_length(u_char *p, size_t n);
-u_char * ngx_utf_cpystrn(u_char *dst, u_char *src, size_t n);
+u_char *ngx_utf_cpystrn(u_char *dst, u_char *src, size_t n);
 
 
-#define NGX_ESCAPE_URI     0
-#define NGX_ESCAPE_ARGS    1
-#define NGX_ESCAPE_HTML    2
+#define NGX_ESCAPE_URI       0
+#define NGX_ESCAPE_ARGS      1
+#define NGX_ESCAPE_HTML      2
 
-#define NGX_UNESCAPE_URI   1
+#define NGX_UNESCAPE_URI     1
 
 uintptr_t ngx_escape_uri(u_char *dst, u_char *src, size_t size,
     ngx_uint_t type);
 void ngx_unescape_uri(u_char **dst, u_char **src, size_t size, ngx_uint_t type);
 
 
-#define  ngx_qsort                qsort
+void ngx_sort(void *base, size_t n, size_t size,
+    int (*cmp)(const void *, const void *));
+#define ngx_qsort            qsort
 
 
-#define  ngx_value_helper(n)      #n
-#define  ngx_value(n)             ngx_value_helper(n)
+#define ngx_value_helper(n)  #n
+#define ngx_value(n)         ngx_value_helper(n)
 
 
 #endif /* _NGX_STRING_H_INCLUDED_ */