Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set method _connectSSL as protected #6424

Merged
merged 1 commit into from
Aug 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ class WiFiClientSecure : public WiFiClient {
// AxTLS API deprecated section end
/////////////////////////////////////

protected:
bool _connectSSL(const char *hostName); // Do initial SSL handshake

private:
void _clear();
void _clearAuthenticationSettings();
Expand Down Expand Up @@ -243,7 +246,6 @@ class WiFiClientSecure : public WiFiClient {
size_t _recvapp_len;

bool _clientConnected(); // Is the underlying socket alive?
bool _connectSSL(const char *hostName); // Do initial SSL handshake
void _freeSSL();
int _run_until(unsigned target, bool blocking = true);
size_t _write(const uint8_t *buf, size_t size, bool pmem);
Expand Down