We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8911a05 commit 28d74d7Copy full SHA for 28d74d7
libraries/SSLClient/src/SSLClient.cpp
@@ -406,7 +406,7 @@ void SSLClient::setHandshakeTimeout(unsigned long handshake_timeout)
406
sslclient->handshake_timeout = handshake_timeout * 1000;
407
}
408
409
-void SSLClient::setTimeout(unsigned long seconds)
+void SSLClient::setConnectionTimeout(unsigned long seconds)
410
{
411
_timeout = seconds * 1000;
412
libraries/SSLClient/src/SSLClient.h
@@ -83,7 +83,7 @@ class SSLClient : public Client
83
bool verify(const char* fingerprint, const char* domain_name);
84
void setHandshakeTimeout(unsigned long handshake_timeout);
85
86
- void setTimeout(unsigned long seconds);
+ void setConnectionTimeout(unsigned long seconds);
87
88
operator bool()
89
0 commit comments