[SON for Hive] - Implement HTTPS RPC client #610

Merged
serkixenos merged 18 commits from feature/son-for-hive-https-support into feature/son-for-hive 2021-10-25 15:18:33 +00:00
Showing only changes of commit f59d34c001 - Show all commits

View file

@ -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