in reply to IO::Select error
...and while you follow virtualsue's suggestion, take 5 minutes to pepper your code with print statements and error checking clauses, such as:
With a 99% chance, you are forgetting a check like the one above.#turning this... my $sock=Io::Socket->new(...); #into this my $sock=Io::Socket->new(...) or die('foo!');
|
|---|