From 81f445d03f929ff01d1befada73b7717b942e7d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Anic=CC=81?= Date: Thu, 13 Jul 2023 14:45:12 +0200 Subject: [PATCH] add few words to the readme --- src/readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/readme.md b/src/readme.md index ef27578..f846de1 100644 --- a/src/readme.md +++ b/src/readme.md @@ -1,4 +1,8 @@ +This project is based on [mattnite/zig-zlib](https://github.com/mattnite/zig-zlib). I also used [LukasKastern]([Title](https://github.com/LukasKastern/zig-zlib) fork for making project compatibile with 0.11 zig master. +There is existing deflate/gzip compressor/decompressor in zig standard library. For using it in websocket implementation I was missing ability to set window size (it is fixed on 32k) and sliding window functionality in decompressor. +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