commit | a004ade512cddb5f9ed4a077c6f3cc85aeaa72b0 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue May 30 17:22:18 2017 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue Oct 31 18:03:24 2017 +0100 |
tree | ae927fd7128f164cd2540eb7d693834d7e380390 | |
parent | 8071eae6b92f00f001af7eef89ee6ac129e45af6 [diff] |
MINOR: hpack: implement the HPACK Huffman table decoder The code was borrowed from the HPACK experimental implementations available here : https://github.com/wtarreau/http2-exp It contains the Huffman table as specified in RFC7541 Appendix B, and a set of reverse tables used to decode a Huffman byte stream, and produced by contrib/h2/gen-rht. The encoder is not finalized, it doesn't emit the byte stream but this is not needed for now.