Unix sockets programming: port is not getting unbound after server shutdown Unix sockets programming: port is not getting unbound after server shutdown unix unix

Unix sockets programming: port is not getting unbound after server shutdown


The sockets have a lingering time after they close. They may keep the port taken for a litte while after the execution of your application, so they may send any unsent data. If you wait long enough the port will be released and can be taken again for another socket.

For more info on Socket Lingering check out:

http://www.developerweb.net/forum/archive/index.php/t-2982.html


errno 98 - Address already in use

Look into SO_REUSEADDR

Beej's guide to network programming