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

Micro changes and fix utest fail.

This commit is contained in:
winlin 2022-09-30 19:32:22 +08:00
parent 1e6143e2eb
commit d32bd72527
4 changed files with 22 additions and 23 deletions

View file

@ -1011,8 +1011,6 @@ void SrsHttpResponseWriter::write_default_header()
SrsHttpRequestWriter::SrsHttpRequestWriter(ISrsProtocolReadWriter* io)
{
writer_ = new SrsHttpMessageWriter(io, this);
method_ = NULL;
path_ = NULL;
}
SrsHttpRequestWriter::~SrsHttpRequestWriter()
@ -1040,10 +1038,10 @@ srs_error_t SrsHttpRequestWriter::writev(const iovec* iov, int iovcnt, ssize_t*
return writer_->writev(iov, iovcnt, pnwrite);
}
void SrsHttpRequestWriter::write_header(const char* method, const char* path)
void SrsHttpRequestWriter::write_header(const std::string& method, const std::string& path)
{
if (writer_->header_wrote()) {
srs_warn("http: multiple write_header calls, current=%s(%s), now=%s(%s)", method_, path_, method, path);
srs_warn("http: multiple write_header calls, current=%s(%s), now=%s(%s)", method_.c_str(), path_.c_str(), method.c_str(), path.c_str());
return;
}