| 30 | } |
| 31 | #if defined(HAS_SSL) |
| 32 | void SocketIOclient::beginSSL(const char * host, uint16_t port, const char * url, const char * protocol) { |
| 33 | WebSocketsClient::beginSocketIOSSL(host, port, url, protocol); |
| 34 | WebSocketsClient::enableHeartbeat(60 * 1000, 90 * 1000, 5); |
| 35 | initClient(); |
| 36 | } |
| 37 | |
| 38 | void SocketIOclient::beginSSL(String host, uint16_t port, String url, String protocol) { |
| 39 | WebSocketsClient::beginSocketIOSSL(host, port, url, protocol); |
nothing calls this directly
no outgoing calls
no test coverage detected