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:
Amaury Denoyelle 2021-12-06 16:18:43 +01:00
parent e2288c3087
commit d1202edadd

View File

@ -484,9 +484,6 @@ static int h3_resp_headers_send(struct qcs *qcs, struct htx *htx)
break; break;
} }
if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && status >= 200)
qcs->flags |= QC_SF_FIN_STREAM;
return ret; return ret;
err: err: