mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 07:37:02 +02:00
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.
This commit is contained in:
parent
156a59b7c9
commit
dc2593e460
@ -1016,7 +1016,7 @@ int qc_build_frm(unsigned char **buf, const unsigned char *end,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
pkt->flags |= builder[frm->type].flags;
|
pkt->flags |= builder->flags;
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user