WebSockets are no longer experimental

Now that I've made it work at all, at least in some cases.
This commit is contained in:
2017-02-06 21:13:59 +01:00
parent 9531f2b518
commit c03af00e30
2 changed files with 2 additions and 7 deletions

View File

@@ -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);