in reply to IO Socket buffer flushing
IO::Socket sets the socket to autoflush, so all your ->flush() are useless.
$nonblocking = 1; ioctl($sock, 0x8004667e, \$nonblocking);
is an awful way of writing
$sock->blocking(0);
If I understand correctly, your problem is that two writes in quick succession end up being picked up by the second read of two reads in quick succession. If you consider that a problem, you're doing something majorly wrong. Maybe we can help you fix your actual problem if you tell us about it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: IO Socket buffer flushing
by Arvind (Initiate) on Apr 08, 2010 at 19:16 UTC | |
by Corion (Patriarch) on Apr 08, 2010 at 19:25 UTC | |
by Arvind (Initiate) on Apr 09, 2010 at 14:53 UTC | |
by ikegami (Patriarch) on Apr 08, 2010 at 19:48 UTC |