From c03af00e300b6f70d88118ebd1f56c2421efe20f Mon Sep 17 00:00:00 2001
From: Přemysl Janouch
Date: Mon, 6 Feb 2017 21:13:59 +0100
Subject: WebSockets are no longer experimental
Now that I've made it work at all, at least in some cases.
---
README.adoc | 5 ++---
json-rpc-shell.c | 4 ----
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/README.adoc b/README.adoc
index f8de148..c18eb67 100644
--- a/README.adoc
+++ b/README.adoc
@@ -27,9 +27,8 @@ Supported transports
WebSockets
~~~~~~~~~~
-The WebSocket transport is rather experimental. As the JSON-RPC 2.0 spec
-doesn't say almost anything about the underlying transports, I'll shortly
-describe the way it's implemented: every request is sent as a single text
+The JSON-RPC 2.0 spec doesn't say almost anything about underlying transports.
+The way it's implemented here is that every request is sent as a single text
message. If it has an "id" field, i.e. it's not just a notification, the
client waits for a message from the server in response.
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);
--
cgit v1.2.3-70-g09d2