Minimum HTTP/2 client/server implementation.
- client
./http2_client <server ip> <server port>
- server
./http2_server <server port>
- Number of available stream is limited only one.
- Stream has no state. It can only process frames ordered ideally.
- Almost of parts of HPACK encoder/decoder isn't implemented.
- Current implementation can encode by only
Literal Header Field without Indexing
- Max size of Name and Value length is limited 7 bits.
- Current implementation can encode by only
- C++11
- Boost >= 1.54