MCPcopy Create free account
hub / github.com/JoaoLopesF/RemoteDebug / beginSocketIOSSL

Method beginSocketIOSSL

src/utility/WebSocketsClient.cpp:113–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111
112#if (WEBSOCKETS_NETWORK_TYPE == NETWORK_ESP8266) || (WEBSOCKETS_NETWORK_TYPE == NETWORK_ESP32)
113void WebSocketsClient::beginSocketIOSSL(const char *host, uint16_t port, const char * url, const char * protocol) {
114 begin(host, port, url, protocol);
115 _client.isSocketIO = true;
116 _client.isSSL = true;
117 _fingerprint = "";
118}
119
120void WebSocketsClient::beginSocketIOSSL(String host, uint16_t port, String url, String protocol) {
121 beginSocketIOSSL(host.c_str(), port, url.c_str(), protocol.c_str());

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected