I'm no networking guru but here's some untested code that just might do the required input processing reliably.
# $sock is open, probably is a IO::Socket of some type my $total_read = 0; my $full_data = ''; my $total; while ( 1 ) { my $read = 0; while ($read < 4) { $read += read($sock,$data,4-$read,$read) # not sure if last arg should have a +1 on it } $total_read += $read; if (! $total) { $total = unpack("N",$data); } elsif ( $total_read >= $total + 4 ) { process(substr($data,0,$total_read-4-$total)); $full_data .= substr($data,0,$total_read-4-$total); last; } else { $full_data .= $data; process($data); other_process($full_data); } } full_process(substr($full_data,0,$total));
And the sender is
# $data has the required data and $sock is an open socket print $sock pack('N',length($data)) . $data . ("\0" x (4-(length($data +)%4)));

In reply to Re: How to use pack/unpack data over a network by repson
in thread How to use pack/unpack data over a network by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.