winlin

remove the duplicated http status line when error

@@ -294,9 +294,6 @@ int SrsHttpHandler::res_error(SrsSocket* skt, int code, std::string reason_phras @@ -294,9 +294,6 @@ int SrsHttpHandler::res_error(SrsSocket* skt, int code, std::string reason_phras
294 { 294 {
295 std::stringstream ss; 295 std::stringstream ss;
296 296
297 - ss << "HTTP/1.1 " << code << " " << reason_phrase << __CRLF  
298 - << "Server: SRS/"RTMP_SIG_SRS_VERSION"" << __CRLF;  
299 -  
300 res_status_line_error(ss, code, reason_phrase) 297 res_status_line_error(ss, code, reason_phrase)
301 ->res_content_type_json(ss) 298 ->res_content_type_json(ss)
302 ->res_content_length(ss, (int)body.length()) 299 ->res_content_length(ss, (int)body.length())