It's specified in RFC2616 that
A "host" without any trailing port information implies the default
port for the service requested (e.g., "80" for an HTTP URL).
so for HTTP or HTTPS that are not running on 80 or 443, we need to include port in Host header.
This is a bug in our code:
|
this->m_request.SetHeader("Host", this->m_request.GetUrl().GetHost()); |
It's specified in RFC2616 that
so for HTTP or HTTPS that are not running on 80 or 443, we need to include port in
Hostheader.This is a bug in our code:
azure-sdk-for-cpp/sdk/core/azure-core/src/http/curl/curl.cpp
Line 414 in f872841