winlin

for #354, remove the double underscore of macro.

@@ -57,9 +57,9 @@ class SrsFastBuffer; @@ -57,9 +57,9 @@ class SrsFastBuffer;
57 // LF = <US-ASCII LF, linefeed (10)> 57 // LF = <US-ASCII LF, linefeed (10)>
58 #define SRS_HTTP_LF SRS_CONSTS_LF // 0x0A 58 #define SRS_HTTP_LF SRS_CONSTS_LF // 0x0A
59 // SP = <US-ASCII SP, space (32)> 59 // SP = <US-ASCII SP, space (32)>
60 -#define __SRS_HTTP_SP ' ' // 0x20 60 +#define SRS_HTTP_SP ' ' // 0x20
61 // HT = <US-ASCII HT, horizontal-tab (9)> 61 // HT = <US-ASCII HT, horizontal-tab (9)>
62 -#define __SRS_HTTP_HT '\x09' // 0x09 62 +#define SRS_HTTP_HT '\x09' // 0x09
63 63
64 // HTTP/1.1 defines the sequence CR LF as the end-of-line marker for all 64 // HTTP/1.1 defines the sequence CR LF as the end-of-line marker for all
65 // protocol elements except the entity-body (see appendix 19.3 for 65 // protocol elements except the entity-body (see appendix 19.3 for