1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-29 21:14:28 +01:00

Execute out of order callback even for seq < current_seq

This commit is contained in:
Matias Fontanini
2016-02-14 08:56:25 -08:00
parent abe94ece52
commit 4123764a48

View File

@@ -173,6 +173,9 @@ void Flow::process_packet(PDU& pdu) {
}
}
}
else if (on_out_of_order_callback_) {
on_out_of_order_callback_(*this, tcp->seq(), raw->payload());
}
}
void Flow::store_payload(uint32_t seq, payload_type payload) {