Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between connected and unconnected sockets?



What is the difference between connected and unconnected sockets?..

Answer / chaitanya

If a UDP socket is unconnected, which is the normal state after a bind() call, then send() or write() are not allowed, since no destination address is available; only sendto() can be used to send data.

Calling connect() on the socket simply records the specified address and port number as being the desired communications partner. That means that send() or write() are now allowed; they use the destination address and port given on the connect call as the destination of the packet.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Unix Socket Programming Interview Questions

What is socket address with example?

0 Answers  


Whats the difference between select() and poll()?

0 Answers  


What is the difference between close() and shutdown()?

1 Answers  


What is with the second parameter in bind()?

1 Answers  


Why sockets are used?

0 Answers  


What is difference between socket () and serversocket () class?

0 Answers  


What's the difference between impact sockets and regular sockets?

0 Answers  


Why do I keep getting EINTR from the socket calls?

1 Answers  


What does af mean in sockets?

0 Answers  


How can I put a timeout on connect()?

1 Answers  


How do I get the port number for a given service?

1 Answers  


How would I put my socket in non-blocking mode?

1 Answers  


Categories