File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
libraries/ESP8266WiFi/src Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ class WiFiClientSecure : public WiFiClient {
37
37
WiFiClientSecure (const WiFiClientSecure &rhs);
38
38
~WiFiClientSecure () override ;
39
39
40
+ WiFiClientSecure& operator =(const WiFiClientSecure&) = default ; // The shared-ptrs handle themselves automatically
41
+
40
42
int connect (IPAddress ip, uint16_t port) override ;
41
43
int connect (const String& host, uint16_t port) override ;
42
44
int connect (const char * name, uint16_t port) override ;
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ class WiFiServerSecure : public WiFiServer {
62
62
void setServerKeyAndCert (const uint8_t *key, int keyLen, const uint8_t *cert, int certLen);
63
63
void setServerKeyAndCert_P (const uint8_t *key, int keyLen, const uint8_t *cert, int certLen);
64
64
65
+ WiFiServerSecure& operator =(const WiFiServerSecure&) = default ;
66
+
65
67
using ClientType = WiFiClientSecure;
66
68
67
69
private:
You can’t perform that action at this time.
0 commit comments