We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3363be0 commit 4812caeCopy full SHA for 4812cae
1 file changed
libraries/ESP8266WiFi/src/WiFiClient.cpp
@@ -48,14 +48,16 @@ WiFiClient* SList<WiFiClient>::_s_first = 0;
48
49
50
WiFiClient::WiFiClient()
51
-: _client(0), _timeout(5000)
+: _client(0)
52
{
53
+ _timeout = 5000;
54
WiFiClient::_add(this);
55
}
56
57
WiFiClient::WiFiClient(ClientContext* client)
-: _client(client), _timeout(5000)
58
+: _client(client)
59
60
61
_client->ref();
62
63
0 commit comments