-
http://stackoverflow.com/questions/11797708/jetty-websocket-custom-events
"jetty-websocket没有为子协议解析提供好的注入架构,对于pushserver而言效率和定制性问题
如binarymessage完整接收后返回对应拷贝,上层无法对这个buffer copy过程和子协议解析做精确控制,造成内存碎片等问题"
…
wsky updated
11 years ago
-
## Description
```
jupyter_server/jupyter_server/services/kernels/websocket.py", line 87, in select_subprotocol
preferred_protocol = self.connection.kernel_ws_protocol
…
-
From the Websocket RFC6455:
For client side:
> |Sec-WebSocket-Protocol| header field, with a list of values indicating which protocols the client would like to speak, ordered by preference.
And…
-
In your Readme you talk about a list of possible protocol/subprotocol combinations. Where is that list located or where can I find a list of possible combinations?
-
The current draft aims to be generic wrt the finality subprotocol because (a) we want to ensure the design is modular and does not have hidden/unexpected dependencies on the specific subprotocol, and …
-
I believe there may be a bug in the subprotocol capability. I am able to do the following:
Client:
```
add_subprotocol("proto_a")
add_subprotocol("proto_b")
connect()
```
The request is similar to:
…
-
Currently, if there is an event affordance or an observable property, there has to be a subprotocol in place in order to do real eventing, e.g. sse, longpoll etc. However, we do not mandate this and I…
-
When connecting to a websocket server, the client can provide multiple supported subprotocols in the header `Sec-Websocket-Protocol`. The server then chooses one of them and returns the chosen with th…
-
Points to cover
- An application can handle subprotocol negotiation on its own by setting the Sec-Websocket-Protocol response header. The `Subprotocols(r *http.Request) []string` function is help…
-
### Is there an existing feature request for this?
- [X] I have searched the existing feature requests
### Is your feature request related to a problem? Please describe.
I am in a situation w…