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 |
How can I listen on more than one port at a time?
How can I be sure that UDP messages are received in order?
Are unix sockets faster than tcp?
Can multiple clients connect to same socket?
How can I bind() to a port number < 1024?
How should I choose a port number for my server?
Explain the TIME_WAIT state.
How would I put my socket in non-blocking mode?
Whats the difference between select() and poll()?
Why do I get EPROTO from read()?
How do I convert a string into an internet address?
How are unix domain sockets implemented?