Problem: WSAEventSelect checks for FD_OOB, but select does not
WSAEventSelect is used on Windows (when select is the polling method) only if waiting for more than one socket family, excluding IPv4/6. It is then passed FD_OOB, which means it can be woken by OOB messages, but select later on never checks for it. Remove FD_OOB as it's not actually used for anything.
Showing
Please
register
or
sign in
to comment