On Tue, 2006-09-05 at 11:31 +0300, Erez D wrote: > hi > > i'm trying to build a client + server using udp (in c) > > i can send from the client to the server, > but when i reply from the sender to the client, i get: > > write: Transport endpoint is not connected > > so my question is: can i use a udp connection bidirectionly, or do i > need to open two ? > > thanks, > erez.
UDP is connection-less. You just sendto/recvfrom without a connection. Gilboa ================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]
