Why do I get UDP datagrams out of order even with processes running locally?

后端 未结 4 1868
后悔当初
后悔当初 2020-12-07 00:58

I\'m developing a java interface between a streaming server and a flash client. I noticed that UDP datagrams can reach my interface out of order even if both processes are r

4条回答
  •  无人及你
    2020-12-07 01:45

    UDP isn't specified to preserve sequence, as the posters above have all said, but if there are no intermediate routers I would also suspect a bug in your code.

提交回复
热议问题