Skip to content

Commit

Permalink
fix: support fin-acks
Browse files Browse the repository at this point in the history
  • Loading branch information
KolbyML committed Sep 10, 2024
1 parent 2d98383 commit d894487
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ impl<const N: usize, P: ConnectionPeer> Connection<N, P> {
closing:
Some(Closing {
local_fin: Some(local),
remote_fin: None,
remote_fin: _,
}),
sent_packets,
..
Expand All @@ -828,7 +828,7 @@ impl<const N: usize, P: ConnectionPeer> Connection<N, P> {
if let State::Connected {
closing:
Some(Closing {
local_fin: None,
local_fin: _,
remote_fin: Some(remote),
}),
sent_packets,
Expand Down

0 comments on commit d894487

Please sign in to comment.