We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a90443 commit 64cdf17Copy full SHA for 64cdf17
rustiflow/src/flows/features/retransmission_stats.rs
@@ -42,8 +42,8 @@ impl FlowFeature for RetransmissionStats {
42
return;
43
}
44
45
- // Exclude pure ACKs (ACK flag set, no data length)
46
- 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 {
47
48
49
0 commit comments