You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a case where there are missing packets in my capture. The original tcp stream was fine. I receive server_out_of_order_callback after the missing packet but it may take a while before I realize that the problem is with capture (I track acks on the client flow). The packets are stored in buffered_payload_. The problem is when I call advance_sequence, the first stored packet in buffered_payload_ is removed. I think if (seq_compare(it->first, seq) <= 0) in advance_sequence should be if (seq_compare(it->first, seq) < 0)
The text was updated successfully, but these errors were encountered:
I have a case where there are missing packets in my capture. The original tcp stream was fine. I receive server_out_of_order_callback after the missing packet but it may take a while before I realize that the problem is with capture (I track acks on the client flow). The packets are stored in buffered_payload_. The problem is when I call advance_sequence, the first stored packet in buffered_payload_ is removed. I think
if (seq_compare(it->first, seq) <= 0)
in advance_sequence should beif (seq_compare(it->first, seq) < 0)
The text was updated successfully, but these errors were encountered: