We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e77f96c commit 8f45a0fCopy full SHA for 8f45a0f
libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.h
@@ -193,6 +193,9 @@ class WiFiClientSecure : public WiFiClient {
193
// AxTLS API deprecated section end
194
/////////////////////////////////////
195
196
+ protected:
197
+ bool _connectSSL(const char *hostName); // Do initial SSL handshake
198
+
199
private:
200
void _clear();
201
void _clearAuthenticationSettings();
@@ -243,7 +246,6 @@ class WiFiClientSecure : public WiFiClient {
243
246
size_t _recvapp_len;
244
247
245
248
bool _clientConnected(); // Is the underlying socket alive?
- bool _connectSSL(const char *hostName); // Do initial SSL handshake
249
void _freeSSL();
250
int _run_until(unsigned target, bool blocking = true);
251
size_t _write(const uint8_t *buf, size_t size, bool pmem);
0 commit comments