diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-02-06 21:13:59 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-02-06 21:28:40 +0100 |
commit | c03af00e300b6f70d88118ebd1f56c2421efe20f (patch) | |
tree | 4da8f23ef4f2d0a1fb9e5b13805bb5c14f8eb0b5 /json-rpc-shell.c | |
parent | 9531f2b5184e12cdea95b356c842b9b19fbc80fb (diff) | |
download | json-rpc-shell-c03af00e300b6f70d88118ebd1f56c2421efe20f.tar.gz json-rpc-shell-c03af00e300b6f70d88118ebd1f56c2421efe20f.tar.xz json-rpc-shell-c03af00e300b6f70d88118ebd1f56c2421efe20f.zip |
WebSockets are no longer experimental
Now that I've made it work at all, at least in some cases.
Diffstat (limited to 'json-rpc-shell.c')
-rw-r--r-- | json-rpc-shell.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/json-rpc-shell.c b/json-rpc-shell.c index 5b9e1ed..ee403d5 100644 --- a/json-rpc-shell.c +++ b/json-rpc-shell.c @@ -3432,11 +3432,7 @@ main (int argc, char *argv[]) g_ctx.backend = backend_curl_new (&g_ctx, endpoint); else if (!strcasecmp_ascii (url_schema, "ws") || !strcasecmp_ascii (url_schema, "wss")) - { - print_warning ("WebSocket support is experimental" - " and most likely completely broken"); g_ctx.backend = backend_ws_new (&g_ctx, endpoint, &url); - } else exit_fatal ("unsupported protocol"); free (url_schema); |