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


in reply to Timing-out network clients?

IO::Socket::INET's timeout method (or the Timeout hash-param to the constructor) won't do what you want here. That timeout value corresponds to how long the socket should wait for acknowledgment from the peer when it has sent data (or is trying to connect).

You definitely do need some sort of "global timer". You're forking, so it's probably as simple as:

  1. recording the PID of the child in a hash, along with the start time
  2. noting when the child process should no longer be around,
  3. sending the KILL signal to the child process.
To set up the timer, you'll either need to use alarm, or switch to a non-blocking form of $server->accept.
I recommend putting the listening socket into an IO::Select object, then adding calls to Timer::HiRes::usleep in your while loop.

-David