When should I use shutdown()?



When should I use shutdown()?..

Answer / chaitanya

shutdown() is useful for deliniating when you are done providing a request to a server using TCP. A typical use is to send a request to a server followed by a shutdown(). The server will read your request followed by an EOF (read of 0 on most unix implementations). This tells the server that it has your full request. You then go read blocked on the socket. The server will process your request and send the necessary data back to you followed by a close. When you have finished reading all of the response to your request you will read an EOF thus signifying that you have the whole response. It should be noted the TTCP (TCP for Transactions -- see R. Steven's home page) provides for a better method of tcp transaction management.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Socket Programming Interview Questions

Can a socket have multiple ports?

0 Answers  


What is a socket set used for?

0 Answers  


How is a socket created?

0 Answers  


What is socket address with example?

0 Answers  


What is active unix domain sockets?

0 Answers  






What is a socket api?

0 Answers  


After the chroot(), calls to socket() are failing. Why?

1 Answers  


of the socket? Does doing a connect() call affect the receive behaviour?

1 Answers  


Why does connect() succeed even before my server did an accept()?

1 Answers  


What are socket exceptions? What is out-of-band data?

1 Answers  


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

0 Answers  


What are Sockets?

1 Answers  


Categories