Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rustiflow/src/flows/features/retransmission_stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ impl FlowFeature for RetransmissionStats {
return;
}

// Exclude pure ACKs (ACK flag set, no data length)
if (packet.flags & ACK_FLAG) != 0 && packet.data_length == 0 {
// Exclude pure ACKs (only ACK flag set, no data length)
if packet.flags == ACK_FLAG && packet.data_length == 0 {
return;
}

Expand Down
Loading