1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for bug #248, use simple buffer for http.

This commit is contained in:
winlin 2014-12-04 11:29:47 +08:00
parent 2cb8b7dd52
commit 0ea8cd9e84
6 changed files with 84 additions and 81 deletions

View file

@ -537,7 +537,7 @@ SrsHttpHandler* SrsHttpHandler::create_http_stream()
SrsHttpMessage::SrsHttpMessage()
{
_body = new SrsBuffer();
_body = new SrsSimpleBuffer();
_state = SrsHttpParseStateInit;
_uri = new SrsHttpUri();
_match = NULL;