mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MINOR: h3: remove duplicated FIN flag position
The FIN flag is already set in h3_snd_buf on HTX EOM reception. The same action in h3_resp_headers_send is duplicated and thus now removed.
This commit is contained in:
parent
e2288c3087
commit
d1202edadd
1 changed files with 0 additions and 3 deletions
3
src/h3.c
3
src/h3.c
|
|
@ -484,9 +484,6 @@ static int h3_resp_headers_send(struct qcs *qcs, struct htx *htx)
|
|||
break;
|
||||
}
|
||||
|
||||
if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && status >= 200)
|
||||
qcs->flags |= QC_SF_FIN_STREAM;
|
||||
|
||||
return ret;
|
||||
|
||||
err:
|
||||
|
|
|
|||
Loading…
Reference in a new issue