vote up 0 vote down star

Hi

UDP doesnot sends any ack back, but will it send any response?

I have set up client server UDP program. If I give client to send data to non existent server then will client receive any response?

My assumption is as;

Client -->Broadcast server address (ARP) Server --> Reply to client with its mac address(ARP) Client sends data to server (UDP)

In any case Client will only receive ARP response. If server exists or not it will not get any UDP response?

Client is using sendto function to send data. We can get error information after sendto call.

So my question is how this info is available when client doesn't get any response. Error code can be get from WSAGetLastError.

I tried to send data to non existent host and sendto call succeeded . As per documentation it should fail with return value SOCKET_ERROR.

Any thoughts??

flag

22% accept rate
1  
It is slightly worrying that you're using UDP and asking that question. It probably means that you should be using TCP. – Dave Hillier Dec 2 '08 at 11:24
I'd like to know if your non-existent host had an fictional IP-address in the same subnet as the origin of the datagram, or if it would have been on the outside of the router. – Guge Dec 2 '08 at 11:54

5 Answers

vote up 3 vote down

You can never receive an error, or notice for a UDP packet that did not reach destination.

link|flag
vote up 1 vote down

The UDP protocol is implemented on top of IP. You send UDP packets to hosts identified by IP addresses, not MAC addresses.

And as pointed out, UDP itself will not send a reply, you will have to add code to do that yourself. Then you will have to add code to expect the reply, and take the proper action if the response is lost (typically resend on a timer, until you decide the other end is "dead"), and so on.

link|flag
vote up 1 vote down

"UDP is a simpler message-based connectionless protocol. In connectionless protocols, there is no effort made to set up a dedicated end-to-end connection. Communication is achieved by transmitting information in one direction, from source to destination without checking to see if the destination is still there, or if it is prepared to receive the information."

link|flag
vote up 0 vote down

If you need reliable UDP as in ordering or verification such that TCP/IP will give you take a look at RUDP or Reliable UDP. Sometimes you do need verification but a mixture of UDP and TCP can be held up on the TCP reliability causing a bottleneck.

For most large scale MMO's for isntance UDP and Reliablity UDP are the means of communication and reliability. All RUDP does is add a smaller portion of TCP/IP to validate and order certain messages but not all.

A common game development networking library is Raknet which has this built in.

RUDP http://www.javvin.com/protocolRUDP.html

An example of RUDP using Raknet and Python http://pyraknet.slowchop.com/

link|flag
vote up 0 vote down

The machine to which you're sending packets may reply with an ICMP UDP port unreachable message.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.