mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
for #319, support signal to persistence config
This commit is contained in:
parent
980e3921e4
commit
1e0481a2d0
4 changed files with 133 additions and 1 deletions
|
@ -194,6 +194,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
#define SRS_CONSTS_CR '\r' // 0x0D
|
||||
// LF = <US-ASCII LF, linefeed (10)>
|
||||
#define SRS_CONSTS_LF '\n' // 0x0A
|
||||
// SP = <US-ASCII SP, space>
|
||||
#define SRS_CONSTS_SP ' ' // 0x20
|
||||
// SE = <US-ASCII SE, semicolon>
|
||||
#define SRS_CONSTS_SE ';' // 0x3b
|
||||
// LB = <US-ASCII SE, left-brace>
|
||||
#define SRS_CONSTS_LB '{' // 0x7b
|
||||
// RB = <US-ASCII SE, right-brace>
|
||||
#define SRS_CONSTS_RB '}' // 0x7d
|
||||
|
||||
///////////////////////////////////////////////////////////
|
||||
// HTTP consts values
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue