http://www.perlmonks.org?node_id=940805


in reply to Re: TCP server: How to reject connections when busy?
in thread TCP server: How to reject connections when busy?

Don't rely on this part. Different implementations behave differently. For example Linux treats backlog parameter 0 as 3. In either case, when the queue is full, then the system simply stops answering SYN packets, which triggers their resending. As result, the peer gets no indication that your server is busy. It simply keeps waiting for connection to be established.

  • Comment on Re^2: TCP server: How to reject connections when busy?