From 9186b0f5fdfd6c29cd04f7ada7b0113fe1f63611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Anic=CC=81?= Date: Thu, 13 Jul 2023 17:07:48 +0200 Subject: [PATCH] add notes to the readme --- readme.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f846de1..ca9696b 100644 --- a/readme.md +++ b/readme.md @@ -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) \ No newline at end of file +[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 +``` \ No newline at end of file