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

Method beginSocketIO

src/utility/WebSocketsClient.cpp:103–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101#endif
102
103void 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
108void WebSocketsClient::beginSocketIO(String host, uint16_t port, String url, String protocol) {
109 beginSocketIO(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