Unix Socket Programming Question: Download Unix Socket Programming PDF

If bind() fails, what should I do with the socket descriptor?

Tweet Share WhatsApp

Answer:

If you are exiting, I have been assured by Andrew that all unixes will close open file descriptors on exit. If you are not exiting though, you can just close it with a regular close() call.

Download Unix Socket Programming PDF Read All 62 Unix Socket Programming Questions
Previous QuestionNext Question
What is with the second parameter in bind()?When should I use shutdown()?