in reply to Re: TCP Server hangs with multiple client connections
in thread TCP Server hangs with multiple client connections
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!while(1) { use strict qw/refs/; use warnings FATAL => 'syntax'; my @ready = $selSock->can_read(10); unless (@ready) {next};
|
|---|