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


in reply to Re^3: Problem with IO::Select
in thread Problem with IO::Select

Ah, ok. So I changed it to
my $rx_txt = "something"; while (length($rx_txt) > 0) { $conn->recv($rx_txt, 1024); $buff.=$rx_txt; }
But the problem stays the same.