Reputation: 953
Is it possible to get TCP packets in wrong order, indicated by sequence number? What happens then in the receiving side? Is there any queue that holds pockets that arrived "too early", for instance?
Upvotes: 4
Views: 2691
Reputation: 9570
Maybe. The receiving TCP engine has several choices about what to do. The only thing it cannot do is deliver the data in those out-of-order packets to the receiving process out of order.
Upvotes: 4