For my Uni assignment I have to create a fast action paced networked game and so have chosen to use UDP as opposed to TCP. I am aware of a lot of the differences in programming both UDP and TCP and have read through most of the relevant parts of MSDN's documentation on winsock. On MSDN it states that creating a UDP socket via the connect() function should bind the socket to the address and port specified and as a result be able use the send() and recv() functions with the created socket.

For my application I create a client and use connect() using the loopback address which sends a number of packets via the send() function. The client, after calling select(), then receives the packets it sent out. However the result I get from the recv() function is SOCKET_ERROR and the error description using WSAGetLastError() is "An existing connection was forcibly closed by the remote host".

If i use the bind() function and use sendto() to send data over the loopback address, I recv() packets without any errors... Does anyone know why the connect() function is not doing what it is supposed to do, and has anyone been able to use UDP sockets with the connect() function?

link|improve this question

1  
UDP is a connectionless protocol. Where on MSDN did it say to use connect()? I think you must have been reading some TCP documentation.... – Tony Delroy Dec 20 '10 at 5:04
1  
connect() does do something with UDP: it sets the address that the UDP socket will send packets to (and receive packets from). So that later on you can just call send() instead of sendto(). Not terribly useful, really, but not completely useless either. – Jeremy Friesner Dec 20 '10 at 5:06
@Tony: no, connect is fully valid on connectionless sockets. It just fixes the socket to only allow sending to/receiving from a single remote address (so you can use send and recv rather than sendto and recvfrom). – R.. Dec 20 '10 at 5:06
feedback

2 Answers

up vote 5 down vote accepted

You will need to call bind() if you want your program to receive UDP packets. connect() only sets the address that the socket will send packets to if you call send(); it does not associate the socket with a local UDP port to receive on; for that you must call bind().

link|improve this answer
Thanks Jeremy, calling bind before connect seems to have done the trick. I'll know more when I code some more on the server side. – Sent1nel Dec 20 '10 at 5:18
feedback

you should check Beej's Guide to Network Programming Using Internet Sockets, there are nice examples that address your question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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