Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
2.0.1
-
None
Description
The backlog argument for listen(int fd, int backlog) describes the maximum backlog size. Currently it is calculated as 10 * SOMAXCONN where SOMAXCONN == 128 which leads to a hard cap of 1280 connections. This limit should be changed to some large value (INT_MAX or something) so that it would always exceed the configured system value.