Skip to content

Commit 32939c4

Browse files
authored
Fix reuse for different URIs in HTTPClient::begin (esp8266#8466)
1 parent 06e3c56 commit 32939c4

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp

+17-1
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,16 @@ bool HTTPClient::begin(WiFiClient &client, const String& url) {
102102
*/
103103
bool HTTPClient::begin(WiFiClient &client, const String& host, uint16_t port, const String& uri, bool https)
104104
{
105+
// Disconnect when reusing HTTPClient to talk to a different host
106+
if (!_host.isEmpty() && _host != host) {
107+
_canReuse = false;
108+
disconnect(true);
109+
}
110+
105111
_client = client.clone();
106112

107-
clear();
113+
clear();
114+
108115
_host = host;
109116
_port = port;
110117
_uri = uri;
@@ -155,6 +162,8 @@ bool HTTPClient::beginInternal(const String& __url, const char* expectedProtocol
155162
_base64Authorization = base64::encode(auth, false /* doNewLines */);
156163
}
157164

165+
const String oldHost = _host;
166+
158167
// get port
159168
index = host.indexOf(':');
160169
if(index >= 0) {
@@ -164,6 +173,13 @@ bool HTTPClient::beginInternal(const String& __url, const char* expectedProtocol
164173
} else {
165174
_host = host;
166175
}
176+
177+
// Disconnect when reusing HTTPClient to talk to a different host
178+
if (!oldHost.isEmpty() && _host != oldHost) {
179+
_canReuse = false;
180+
disconnect(true);
181+
}
182+
167183
_uri = url;
168184

169185
if ( expectedProtocol != nullptr && _protocol != expectedProtocol) {

0 commit comments

Comments
 (0)