-
### Is your feature request related to a problem?
I cannot communicate with WebSocket servers that use the `permessage-gzip` extension.
### Describe the solution you'd like
`aiohttp` should provide…
-
https://tools.ietf.org/html/rfc7692
-
**Is your feature request related to a problem? Please describe.**
RFC 7692 specifies websocket flate compression on a per message basis as an optional extension to the websocket protocol.
Uncompres…
-
Hi,
I'd like to use the context-takeover mechanism defined in rfc7692.
I forked and developed it and I could implement the reader side.
This [branch] (https://github.com/smith-30/websocket/tree/f…
-
Feature request for websocket compression extension: permessage-deflate
https://datatracker.ietf.org/doc/html/rfc7692
Thank you
-
Websocket traffic goes uncompressed over the network. Our application is sending and receiving JSON objects, which can get relatively big.
https://tools.ietf.org/html/rfc7692 documents a method to …
-
Implement Compression extension
RFC: https://www.rfc-editor.org/rfc/rfc7692
I see possible implement **no_context_takeover** as default
Suggestion:
As a user of the library, I would li…
-
As of Go 1.14, compress/flate's Writer only allows resetting the write side with the same dictionary.
In contrast, the Reader can be reset with a new dictionary.
I need this to efficiently imple…
-
If I send the following header in the websocket handshake:
```
Sec-WebSocket-Extensions: permessage-deflate; server_no_context_takeover
```
The returned handshake response says the server does not…
-
## Expected Behavior
"Per-message compression" has been adopted in many places, like Tomcat websocket. In order to leverage this, I hope websocket in actix-http and awc can support this extension…