comparison src/http/ngx_http_parse.c @ 830:51b08975dfa3

treat '\' as special character in win32 only
author Igor Sysoev <igor@sysoev.ru>
date Mon, 30 Oct 2006 20:36:54 +0000
parents 0444286b860a
children 82742d66547a
comparison
equal deleted inserted replaced
829:362d156f0278 830:51b08975dfa3
14 14
15 /* ?>=< ;:98 7654 3210 /.-, +*)( '&%$ #"! */ 15 /* ?>=< ;:98 7654 3210 /.-, +*)( '&%$ #"! */
16 0x7fff37d6, /* 0111 1111 1111 1111 0011 0111 1101 0110 */ 16 0x7fff37d6, /* 0111 1111 1111 1111 0011 0111 1101 0110 */
17 17
18 /* _^]\ [ZYX WVUT SRQP ONML KJIH GFED CBA@ */ 18 /* _^]\ [ZYX WVUT SRQP ONML KJIH GFED CBA@ */
19 #if (NGX_WIN32)
19 0xefffffff, /* 1110 1111 1111 1111 1111 1111 1111 1111 */ 20 0xefffffff, /* 1110 1111 1111 1111 1111 1111 1111 1111 */
21 #else
22 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */
23 #endif
20 24
21 /* ~}| {zyx wvut srqp onml kjih gfed cba` */ 25 /* ~}| {zyx wvut srqp onml kjih gfed cba` */
22 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */ 26 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */
23 27
24 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */ 28 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */