I have a server application which handles network clients with an async i/o. The client connections are accepted then added to a descriptor set which can be monitored with poll/epoll/select/etc. I'm using the apr_pollset_poll() apache APR library call to check for descriptors which can be read or written to. This uses epoll/poll/select/etc internally depending on the platform.
Problem is that somehow one of the socket descriptors gets corrupt and the apr_pollset_poll returns errno 10038 which is WSAENOTSOCK: An operation was attempted on something that is not a socket. Unfortunately this causes my application to stop working at all instead of just being able to kick that particular client connection. If I could somehow ignore or remove this socket from the descriptor set, then it could continue to function and properly read/write the other sockets. I know I should find the root cause which causes the socket to go corrupt, but I need a failsafe workaround.
Once the descriptors are added to the pollset, these are then handled by the OS/kernel and I see no way of retrieving them to be able to iterate on. Maintaining these also in my own list would probably create other problems further down, because on socket close I would need to clean them up somehow which occurs automatically for the in-kernel pollset.
Any suggestions?