While iterating through socket file descriptors, how can I check if one of them is from a passive socket (listening for connections)?
|
This can be checked with getsockopt(SO_ACCEPTCONN). For example:
|
||||
|
|
|
Strictly speaking, you could try performing an operation on the socket which would incidentally determine what type of socket it is, like trying to accept a connection from it. If Keeping track of which sockets are which is a better solution overall, though. Unless you're building a really trivial application, chances are that you'll need to keep some sort of additional data on each socket anyway. |
|||
|
|
|
You can't really tell. You have to keep track of it yourself, and when you want to check if a socket is the listening socket you compare with the one you have saved. |
|||||||||
|
|
You can run in the command line (on a Mac/Linux enviroment):
and/or (Linux/Mac/Windows enviroment)
|
|||
|
|