mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Use same style of boolean checking in conn_ok_to_close() (#347)
This commit is contained in:
parent
646652a67c
commit
df67278304
1 changed files with 2 additions and 2 deletions
|
@ -2767,8 +2767,8 @@ conn_ok_to_close (const struct ietf_full_conn *conn)
|
|||
|| (
|
||||
!lsquic_send_ctl_have_outgoing_stream_frames(&conn->ifc_send_ctl)
|
||||
&& !have_bidi_streams(conn)
|
||||
&& lsquic_send_ctl_have_unacked_stream_frames(
|
||||
&conn->ifc_send_ctl) == 0);
|
||||
&& !lsquic_send_ctl_have_unacked_stream_frames(
|
||||
&conn->ifc_send_ctl));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue