in reply to Re: TCP Server hangs with multiple client connections
in thread TCP Server hangs with multiple client connections

Tried what you suggested, changed it a little though to
while(1) { use strict qw/refs/; use warnings FATAL => 'syntax'; my @ready = $selSock->can_read(10); unless (@ready) {next};
so that it wouldn't die if no clients connected. But anyway, and had no effect that I could see. Thanks for the suggestion though!