Implement feature #105; NETACCEPTON now listens on all network adapters, including the loopback adapter. This makes it possible to connect to a server using "localhost", which simplifies writing tests, examples, and testing the servers.
The fix was to not bind() the listen() socket using a socket address that came from doing a DNS Lookup on the local machine, but to instead use INADDR_ANY. This simplifies the code flow for servers, as the host name lookup was asynchronous.