mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
for #354, remove the double underscore of macro.
This commit is contained in:
parent
c6817cc422
commit
7065db192c
1 changed files with 2 additions and 2 deletions
|
@ -57,9 +57,9 @@ class SrsFastBuffer;
|
|||
// LF = <US-ASCII LF, linefeed (10)>
|
||||
#define SRS_HTTP_LF SRS_CONSTS_LF // 0x0A
|
||||
// SP = <US-ASCII SP, space (32)>
|
||||
#define __SRS_HTTP_SP ' ' // 0x20
|
||||
#define SRS_HTTP_SP ' ' // 0x20
|
||||
// HT = <US-ASCII HT, horizontal-tab (9)>
|
||||
#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
|
||||
|
|
Loading…
Reference in a new issue