commit | a5b1b894c695c6b632f1fd175be776decdc2aafa | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Wed Aug 25 17:56:22 2021 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Thu Sep 23 15:27:25 2021 +0200 |
tree | 6f2053cdf9a6eacc6a6ca73afd80c70d9bfc6cc4 | |
parent | f4c5c7bdbb9abffe7ce3c104153e2f4d72361fcc [diff] |
MINOR: quic: Prepare STREAM frames to fill QUIC packets We must take as most as possible data from STREAM frames to be encapsulated in QUIC packets, almost as this is done for CRYPTO frames whose fields are variable length fields. The difference is that STREAM frames are only accepted for short packets without any "Length" field. So it is sufficient to call max_available_room() for that in place of max_stream_data_size() as this is done for CRYPTO data.