Core: use '\r' for CR and '\n' for LF definitions.

This commit is contained in:
Ruslan Ermilov 2014-05-14 22:26:05 +04:00
parent e1a183946f
commit 9b92f59aef

View File

@ -80,9 +80,9 @@ typedef void (*ngx_connection_handler_pt)(ngx_connection_t *c);
#include <ngx_proxy_protocol.h> #include <ngx_proxy_protocol.h>
#define LF (u_char) 10 #define LF (u_char) '\n'
#define CR (u_char) 13 #define CR (u_char) '\r'
#define CRLF "\x0d\x0a" #define CRLF "\r\n"
#define ngx_abs(value) (((value) >= 0) ? (value) : - (value)) #define ngx_abs(value) (((value) >= 0) ? (value) : - (value))