]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: quic: Add a fake congestion control algorithm named "nocc"
authorFrédéric Lécaille <flecaille@haproxy.com>
Fri, 31 Mar 2023 13:21:55 +0000 (15:21 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Fri, 31 Mar 2023 15:09:03 +0000 (17:09 +0200)
commitdb4bc6b4f3bae81944a828f8a872bae64bc27b46
treee4b4a209f67bc87f755153d780e6b0fedc73717b
parent1cb041a6eefd70864094a1910ee79eeb49f40028
MINOR: quic: Add a fake congestion control algorithm named "nocc"

This algorithm does nothing except initializing the congestion control window
to a fixed value. Very smart!

Modify the QUIC congestion control configuration parser to support this new
algorithm. The congestion control algorithm must be set as follows:

     quic-cc-algo nocc-<cc window size(KB))

For instance if "nocc-15" is provided as quic-cc-algo keyword value, this
will set a fixed window of 15KB.
Makefile
include/haproxy/quic_cc-t.h
src/cfgparse-quic.c
src/quic_cc_nocc.c [new file with mode: 0644]