We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6011d05 commit 4e2e81cCopy full SHA for 4e2e81c
libraries/SocketWrapper/src/MbedSSLClient.cpp
@@ -1,9 +1,5 @@
1
#include "MbedSSLClient.h"
2
3
-arduino::MbedSSLClient::MbedSSLClient(unsigned long timeout): MbedClient(timeout), _disableSNI{false} {
4
- onBeforeConnect(mbed::callback(this, &MbedSSLClient::setRootCA));
5
-}
6
-
7
arduino::MbedSSLClient::MbedSSLClient(): _disableSNI{false} {
8
onBeforeConnect(mbed::callback(this, &MbedSSLClient::setRootCA));
9
};
libraries/SocketWrapper/src/MbedSSLClient.h
@@ -33,8 +33,6 @@ class MbedSSLClient : public arduino::MbedClient {
33
public:
34
MbedSSLClient();
35
36
- MbedSSLClient(unsigned long timeout);
37
38
virtual ~MbedSSLClient() {
39
stop();
40
}
0 commit comments