How come I get address already in use from bind()?
Answer / chaitanya
You get this when the address is already in use. (Oh, you figured that much out?) The most common reason for this is that you have stopped your server, and then re-started it right away. The sockets that were used by the first incarnation of the server are still active. This is further explained in ``2.7 Please explain the TIME_WAIT state.'', and ``2.5 How do I properly close a socket?''.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a socket address?
What does af mean in sockets?
Where is the socket located?
How would I put my socket in non-blocking mode?
If bind() fails, what should I do with the socket descriptor?
How many sockets can a cpu have?
How can I find the full hostname (FQDN) of the system I am running on?
Can multiple sockets use the same port?
What pieces of information make up a socket?
Is there any advantage to handling the signal, rather than just ignoring it and checking for the EPIPE error? Are there any useful parameters passed to the signal catching function?
What is socket address?
system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?