From 06ac80bd3b90072f9bc85c1a0e7308aa1bdf5ac7 Mon Sep 17 00:00:00 2001 From: Payden Sutherland Date: Sat, 17 Nov 2012 12:12:15 -0500 Subject: [PATCH] Change connection str back to echo.websocket.org --- test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.c b/test.c index 0a52089..a15026c 100644 --- a/test.c +++ b/test.c @@ -32,7 +32,7 @@ int onopen(wsclient *c) { int main(int argc, char **argv) { //Initialize new wsclient * using specified URI - wsclient *client = libwsclient_new("ws://localhost:8080"); + wsclient *client = libwsclient_new("ws://echo.websocket.org"); if(!client) { fprintf(stderr, "Unable to initialize new WS client.\n"); exit(1);