23 Dec
2018
23 Dec
'18
12:06 a.m.
On Sat, Dec 22, 2018 at 3:01 PM hh h via Boost
What will be the maximum connections a single ASIO TCP socket server can handle?
Asio doesn't contain magic or reinvent the wheel here, `basic_socket` is a very thin abstraction over a file handle representing a socket. You need to look to the limits of your operating system and configuration to know the baseline limit. And of course subtract from that any additional per-connection resources that your application uses. Regards