From 7065db192c25841586a48da7ffad65192c636eaf Mon Sep 17 00:00:00 2001 From: winlin Date: Sat, 21 Mar 2015 10:42:55 +0800 Subject: [PATCH] for #354, remove the double underscore of macro. --- trunk/src/app/srs_app_http.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/src/app/srs_app_http.hpp b/trunk/src/app/srs_app_http.hpp index 0c4041853..bc524666e 100644 --- a/trunk/src/app/srs_app_http.hpp +++ b/trunk/src/app/srs_app_http.hpp @@ -57,9 +57,9 @@ class SrsFastBuffer; // LF = #define SRS_HTTP_LF SRS_CONSTS_LF // 0x0A // SP = -#define __SRS_HTTP_SP ' ' // 0x20 +#define SRS_HTTP_SP ' ' // 0x20 // HT = -#define __SRS_HTTP_HT '\x09' // 0x09 +#define SRS_HTTP_HT '\x09' // 0x09 // HTTP/1.1 defines the sequence CR LF as the end-of-line marker for all // protocol elements except the entity-body (see appendix 19.3 for