Answer Posted / chaitanya
Very simple: with TCP you get SIGPIPE if your end of the connection has received an RST from the other end. What this also means is that if you were using select instead of write, the select would have indicated the socket as being readable, since the RST is there for you to read (read will return an error with errno set to ECONNRESET).
Basically an RST is TCP's response to some packet that it doesn't expect and has no other way of dealing with. A common case is when the peer closes the connection (sending you a FIN) but you ignore it because you're writing and not reading. (You should be using select.) So you write to a connection that has been closed by the other end and the oether end's TCP responds with an RST.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does unix socket work?
What is the purpose of socket?
What is active unix domain sockets?
How do I convert a string into an internet address?
What are the types of sockets?
What's the difference between impact sockets and regular sockets?
Why does it take so long to detect that the peer died?
How can I force a socket to send the data in its buffer?
Can a socket have multiple ports?
How many sockets can a port have?
What is the difference between read() and recv()?
Why do we need sockets?
Can a single socket port be used for multiple applications?
How can I set the timeout for the connect() system call?
What exactly is a socket?