We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2de6f2 commit 6011d05Copy full SHA for 6011d05
libraries/SocketWrapper/src/AClient.cpp
@@ -2,10 +2,6 @@
2
#include "AClient.h"
3
#include "MbedSSLClient.h"
4
5
-AClient::AClient(unsigned long timeout) {
6
- setSocketTimeout(timeout);
7
-}
8
-
9
void arduino::AClient::newMbedClient() {
10
client.reset(new MbedClient());
11
client->setNetwork(getNetwork());
libraries/SocketWrapper/src/AClient.h
@@ -28,7 +28,6 @@ class AClient : public Client {
28
public:
29
30
AClient() {}
31
- AClient(unsigned long timeout);
32
33
virtual int connect(IPAddress ip, uint16_t port);
34
virtual int connect(const char *host, uint16_t port);
@@ -71,7 +70,6 @@ class ASslClient : public AClient {
71
70
72
73
ASslClient() {}
74
- ASslClient(unsigned long timeout) : AClient(timeout) {}
75
76
void disableSNI(bool statusSNI);
77
0 commit comments