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

fix bug of no http-server feature

This commit is contained in:
winlin 2014-04-01 15:42:27 +08:00
parent d28458d5fa
commit 52263457bf
5 changed files with 19 additions and 0 deletions

View file

@ -23,6 +23,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <srs_app_http_conn.hpp>
#ifdef SRS_HTTP_SERVER
#include <sstream>
using namespace std;
@ -254,3 +256,5 @@ int SrsHttpConn::on_body(http_parser* parser, const char* at, size_t length)
return 0;
}
#endif