Update https_call.cpp
This commit is contained in:
parent
dc72582fb6
commit
f59d34c001
1 changed files with 8 additions and 1 deletions
|
|
@ -99,7 +99,14 @@ private:
|
|||
|
||||
// host
|
||||
|
||||
stream << "Host: " << m_Call.host() << ":" << m_Endpoint.port() << CrLf;
|
||||
stream << "Host: " << m_Call.host();
|
||||
|
||||
if (m_Call.port() != 0) {
|
||||
//ASSERT(m_Endpoint.port() == m_Call.port());
|
||||
stream << ":" << m_Call.port();
|
||||
}
|
||||
|
||||
stream << CrLf;
|
||||
|
||||
// content
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue