mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-03 05:40:24 -05:00
BUG/MEDIUM: quic: qc_prep_app_pkts() retries on qc_build_pkt() failures
The "stop_build" label aim is to try to reuse the TX buffer when there is not enough contiguous room to build a packet. It was defined but not used!
This commit is contained in:
parent
530601cd84
commit
d5066dd9dd
1 changed files with 1 additions and 1 deletions
|
|
@ -2527,7 +2527,7 @@ static int qc_prep_app_pkts(struct quic_conn *qc, struct qring *qr,
|
|||
case -2:
|
||||
goto err;
|
||||
case -1:
|
||||
goto out;
|
||||
goto stop_build;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue