In example 3 of the HTTP server (boost 2.44), the IO service is created without a thread count hint. Under Windows, one normally passes the thread count to CreateIoCompletionPort(). boost:asio has an IO Service ctor that takes the thread count, but that ctor is not used in this example. And the thread count is known.In example 3 of the HTTP server (boost 2.44), t