Use `wss://echo.websocket.events/.ws` in WebSocket client example (#1809)

This commit is contained in:
Muhammad 2023-10-12 06:27:49 +03:00 committed by GitHub
parent ab76e80089
commit 645c2d8aaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ int main(int argc, char *argv[])
// Connect to a public echo server
if (argc > 1 && std::string(argv[1]) == "-p")
{
server = "wss://echo.websocket.org";
server = "wss://echo.websocket.events/.ws";
path = "/";
}
else