From d894487d80a650bffd9e511fd9071b05c1ddb40d Mon Sep 17 00:00:00 2001 From: Kolby Moroz Liebl <31669092+KolbyML@users.noreply.github.com> Date: Mon, 9 Sep 2024 12:52:29 -0600 Subject: [PATCH] fix: support fin-acks --- src/conn.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conn.rs b/src/conn.rs index fa9a79c..e8dbcc3 100644 --- a/src/conn.rs +++ b/src/conn.rs @@ -811,7 +811,7 @@ impl Connection { closing: Some(Closing { local_fin: Some(local), - remote_fin: None, + remote_fin: _, }), sent_packets, .. @@ -828,7 +828,7 @@ impl Connection { if let State::Connected { closing: Some(Closing { - local_fin: None, + local_fin: _, remote_fin: Some(remote), }), sent_packets,