summaryrefslogtreecommitdiffstats
path: root/mojo/services/network/public/interfaces/http_connection.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/services/network/public/interfaces/http_connection.mojom')
-rw-r--r--mojo/services/network/public/interfaces/http_connection.mojom7
1 files changed, 7 insertions, 0 deletions
diff --git a/mojo/services/network/public/interfaces/http_connection.mojom b/mojo/services/network/public/interfaces/http_connection.mojom
index 1733ed2..2cb79bd 100644
--- a/mojo/services/network/public/interfaces/http_connection.mojom
+++ b/mojo/services/network/public/interfaces/http_connection.mojom
@@ -28,6 +28,13 @@ interface HttpConnectionDelegate {
// WebSocket should be written to the producer end of the |send_stream|.
// |web_socket| will be already connected. There is no need to call Connect()
// on it. But |client| will still receive a DidConnect() notification.
+ //
+ // NOTE: WebSocket server support is not fully implemented. For now the
+ // following are not supported:
+ // - negotiating subprotocol or extension;
+ // - fragmented or non-text messages;
+ // - failure or close notification;
+ // - flow control.
OnReceivedWebSocketRequest(HttpRequest request)
=> (WebSocket&? web_socket,
handle<data_pipe_consumer>? send_stream,