| 111 | |
| 112 | #if (WEBSOCKETS_NETWORK_TYPE == NETWORK_ESP8266) || (WEBSOCKETS_NETWORK_TYPE == NETWORK_ESP32) |
| 113 | void 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 | |
| 120 | void WebSocketsClient::beginSocketIOSSL(String host, uint16_t port, String url, String protocol) { |
| 121 | beginSocketIOSSL(host.c_str(), port, url.c_str(), protocol.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected