File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ void SSLClient::setHandshakeTimeout(unsigned long handshake_timeout)
406
406
sslclient->handshake_timeout = handshake_timeout * 1000 ;
407
407
}
408
408
409
- void SSLClient::setTimeout (unsigned long seconds)
409
+ void SSLClient::setConnectionTimeout (unsigned long seconds)
410
410
{
411
411
_timeout = seconds * 1000 ;
412
412
}
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class SSLClient : public Client
83
83
bool verify (const char * fingerprint, const char * domain_name);
84
84
void setHandshakeTimeout (unsigned long handshake_timeout);
85
85
86
- void setTimeout (unsigned long seconds);
86
+ void setConnectionTimeout (unsigned long seconds);
87
87
88
88
operator bool ()
89
89
{
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class lwipClient : public Client {
56
56
{
57
57
return (_tcp_client->pcb ->remote_port );
58
58
};
59
- void setTimeout (uint16_t timeout)
59
+ void setConnectionTimeout (uint16_t timeout)
60
60
{
61
61
_timeout = timeout;
62
62
}
You can’t perform that action at this time.
0 commit comments