Let\'s say I have Windows 7 with one real network interface and few loopback interfaces. I have IOCP enabled server that accepts connections from clients. I\'m trying to sim
In your code example, you are calling Bind(bindEndpoint)
, but you do not show how bindEndpoint
is defined. Check that :
The loopback address does not count because many systems treat it specially for routing and binding purposes. So binding to ports in loopback may be sucking up the ports across all addresses the same as if you were binding to INADDR_ANY
(0.0.0.0
).