commit | 9a327a7c3f4d717d98e7bb03951e85fe5af51c20 | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Mon Feb 14 17:11:09 2022 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Tue Feb 15 17:10:51 2022 +0100 |
tree | 7ac65ba48189645c81816f4f162ab816c0e00df0 | |
parent | 95b93a3a93723a710652cf282dd959ec79015afb [diff] |
MINOR: mux-quic: implement rcv_buf Implement the stream rcv_buf operation on QUIC mux. A new buffer is stored in qcs structure named app_buf. This new buffer will contains HTX and will be filled for example on H3 DATA frame parsing. The rcv_buf operation transfer as much as possible data from the HTX from app_buf to the conn-stream buffer. This is mainly identical to mux-h2. This is required to support HTTP POST data.