| 101 | #endif |
| 102 | |
| 103 | void WebSocketsClient::beginSocketIO(const char *host, uint16_t port, const char * url, const char * protocol) { |
| 104 | begin(host, port, url, protocol); |
| 105 | _client.isSocketIO = true; |
| 106 | } |
| 107 | |
| 108 | void WebSocketsClient::beginSocketIO(String host, uint16_t port, String url, String protocol) { |
| 109 | beginSocketIO(host.c_str(), port, url.c_str(), protocol.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected