add notes to the readme

This commit is contained in:
Igor Anić 2023-07-13 17:07:48 +02:00
parent 356d180507
commit 9186b0f5fd

View File

@ -5,4 +5,15 @@ It seams that most other websocket implementations are using zlib for deflate.
### Refrences
[Compression Extensions for WebSocket](https://datatracker.ietf.org/doc/html/rfc7692)
[zlib 1.2.13 Manual](https://www.zlib.net/manual.html)
[zlib 1.2.13 Manual](https://www.zlib.net/manual.html)
### Notes
get zlib source into zlib folder:
```sh
wget https://github.com/madler/zlib/releases/download/v1.2.13/zlib-1.2.13.tar.gz
tar xvf zlib-1.2.13.tar.gz
rm zlib-1.2.13.tar.gz
mv zlib-1.2.13 zlib
```