tags:

views:

255

answers:

4

Well, 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 running locally.

Is that normal? I thought that as no datagram has to go through any router or any network device, then that should not be happening.

Thanks in advance Nelson R. Perez

+7  A: 

This would be operating system dependent. While you failed to specify an operating system it isn't important anyway. To remain portable you should always anticipate your datagram sockets receiving out of order data.

TomMD
+1 for the anticipation bit.
Frank Shearar
+2  A: 

Although you are running localhost, expect UDP datagrams to be out of sequence in actual deployment.

If you need them in sequence, try TCP.

Jack
+3  A: 

Actually there are no guarantees of ordering and reception about UDP packets, even if they are sent by localhost on localhost. Just because the specification of the protocol doesn't imply anything about it.

Since you can't make assumptions on them you should choose to use TCP or handle reordering by using a sequence number handled by your programs..

Jack
A: 

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.

EJP
Nah. It's likely due to multiprocessor packet handling.
Zan Lynx
Please explain this comment.
EJP