in reply to TCP server sends just part of my packet
Your client is not reading all the server has to say! Try:
$/ = undef; my $answer = <$socket>;
or do
while( $answer = <$socket> ) {There must be an end of line character in your message at byte 482.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: TCP server sends just part of my packet
by roboticus (Chancellor) on Apr 16, 2013 at 12:30 UTC | |
by microcx (Initiate) on Apr 16, 2013 at 13:02 UTC | |
|
Re^2: TCP server sends just part of my packet
by microcx (Initiate) on Apr 16, 2013 at 12:57 UTC | |
by hdb (Monsignor) on Apr 16, 2013 at 12:59 UTC |