commit | dc2593e4601a95e9a4c3343731f1326e93148afd | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Fri Sep 17 16:57:14 2021 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Thu Sep 23 15:27:25 2021 +0200 |
tree | 3906cc331414d168d00286c1b650bccb95ca94af | |
parent | 156a59b7c9c2f2adf9bab74866468943fcf630ad [diff] |
MINOR: quic: Wrong packet flags settings during frame building We flag the packet as being ack-eliciting when building the frame. But a wrong variable was used to to so.
diff --git a/src/quic_frame.c b/src/quic_frame.c index c06816f..0cbae59 100644 --- a/src/quic_frame.c +++ b/src/quic_frame.c
@@ -1016,7 +1016,7 @@ return 0; } - pkt->flags |= builder[frm->type].flags; + pkt->flags |= builder->flags; return 1; }