-
This happens when receiving payloads from the websocket.
```
Shard-0 has stopped receiving: ("/usr/local/share/lua/5.3/http/websocket.lua:282: read: Connection timed out\
stack traceback:\
\9[C]…
-
The process of negotiating handshakes is clearly defined in section 3.1.3
> In the opening handshake, the client supplies a list of extensions that it would like to use. The default server configurat…
-
I would like to propose a mechanism for enabling the data stream between clients and servers to be compressed using zlib. Zlib is described in [RFC 1950](https://tools.ietf.org/html/rfc1950), is widel…
-
When permessage-deflate is negotiated on a stream, It should be possible to control whether compression is enabled on a per-message basis.
-
Your documentation says this:
```
WebSockets
Functions annotated with @web_endpoint, @asgi_app, or @wsgi_app also support the WebSocket protocol. Consult your web framework for appropriate docume…
-
Using code
```
use flate2::read::DeflateDecoder;
use std::io::prelude::*;
fn main() {
let mut v1 = Vec::new();
v1.extend_from_slice(&[0xf2, 0x48, 0xcd, 0xc9, 0xc9, 0x07, 0x00]);
v…
-
Using code
```
use flate2::read::DeflateDecoder;
use std::io::prelude::*;
fn main() {
let mut v1 = Vec::new();
v1.extend_from_slice(&[0xf2, 0x48, 0xcd, 0xc9, 0xc9, 0x07, 0x00]);
v…
-
probably a stupid question but I couldn't find anything about it. As I understand it [here](https://websockets.readthedocs.io/en/stable/topics/compression.html) the communication via WebSocktets is al…
-
Hello,
I was using 1.7.8, and after my upgrade to 1.7.10 and a week of use, i see that version 1.7.9 and 1.7.10 have both the same comportement :
- They eat a lot of more memory at start 1.7.9-10 : 26…
-
### Expected behavior
I'm trying to write a Netty based Web Socket server that expected to receive high load. The basic reproducible case involves simply opening a web socket connection and the ser…