MCPcopy Create free account
hub / github.com/blinker-iot/blinker-library / beginSSL

Method beginSSL

src/modules/WebSockets/WebSocketsClient.cpp:105–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103#if defined(HAS_SSL)
104#if defined(SSL_AXTLS)
105void WebSocketsClient::beginSSL(const char * host, uint16_t port, const char * url, const char * fingerprint, const char * protocol) {
106 begin(host, port, url, protocol);
107 _client.isSSL = true;
108 _fingerprint = fingerprint;
109 _CA_cert = NULL;
110}
111
112void WebSocketsClient::beginSSL(String host, uint16_t port, String url, String fingerprint, String protocol) {
113 beginSSL(host.c_str(), port, url.c_str(), fingerprint.c_str(), protocol.c_str());

Callers

nothing calls this directly

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected