diff options
author | Mathias Raoul <mathias.raoul@gmail.com> | 2021-04-02 18:02:24 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2021-04-22 00:52:15 +0000 |
commit | db36fda74ece376cd31ca374841e7ca17c06a34c (patch) | |
tree | 50b5c7b3490526cbbe0c6740fb1538917a09f66c /build/external/patches/quicly_0.1.3-vpp/0003-unused-is-late-ack.patch | |
parent | 9292c32b4579a1da2e851fe5ca7de3415b45fc07 (diff) |
quic: update quicly to v0.1.3
This bumps quicly version to v0.1.3 ( sha
d44c089364067dbcdfbad7fb2c821900fb4aef5e in
https://github.com/h2o/quicly )
Also simplifies the build to only make needed
dependancies, and silence compiletime warnings
Type: feature
Change-Id: Ie00ec7e408d234464871b68ddc79bb33dc4179ed
Signed-off-by: Mathias Raoul <mathias.raoul@gmail.com>
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'build/external/patches/quicly_0.1.3-vpp/0003-unused-is-late-ack.patch')
-rw-r--r-- | build/external/patches/quicly_0.1.3-vpp/0003-unused-is-late-ack.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/external/patches/quicly_0.1.3-vpp/0003-unused-is-late-ack.patch b/build/external/patches/quicly_0.1.3-vpp/0003-unused-is-late-ack.patch new file mode 100644 index 00000000000..10c14dab86b --- /dev/null +++ b/build/external/patches/quicly_0.1.3-vpp/0003-unused-is-late-ack.patch @@ -0,0 +1,13 @@ +diff --git a/lib/quicly.c b/lib/quicly.c +index 82ba627..8c0163e 100644 +--- a/lib/quicly.c ++++ b/lib/quicly.c +@@ -4713,7 +4713,7 @@ static int handle_ack_frame(quicly_conn_t *conn, struct st_quicly_handle_payload + /* process newly acked packet */ + if (state->epoch != sent->ack_epoch) + return QUICLY_TRANSPORT_ERROR_PROTOCOL_VIOLATION; +- int is_late_ack = 0; ++ int __attribute__((unused)) is_late_ack = 0; + if (sent->ack_eliciting) { + includes_ack_eliciting = 1; + if (sent->cc_bytes_in_flight == 0) { |