Hi
I have 2 simple scripts to send short files from a win2k box to HP unix box ( for learning purposes only). They work fine, but I am looking for ideas on why the client (win2k) needs a sleep statement after each line write. If I leave it out, I get a "Connection reset by peer" on the receiving end(unix) Thanks and the relative code is below:
# Server (Receiver on Unix end) if ($pid = fork) { # parent close(C); waitpid( -1, &WNOHANG ); next; # ready for another client } else { # child die "can't fork: $!" unless defined $pid; close(S); print C "Connected to $ip:$port "; # get file name sysread(C, $fname, 128) or die "couldn't read: $!\n& +quot;; $fname =~ s/\n//; print "recieving file: $fname\n"; while ( sysread(C, $buf, 128) ) { $msg .= $buf; } open (F, ">$fname") or die "couldn't ope +n it: $!"; # open a new file with the file name and write to it print F $msg; close F; print "Recieved file\n"; exit; } ------ # client (win2k sender) socket(SOCK,AF_INET,SOCK_STREAM,$proto) || die "$0:Cannot open so +cket\n"; connect(SOCK, $remote) or die "can't connect: $!\n"; # send filename to server print "sending file $fname\n"; $bytes = syswrite(SOCK, $fname, length($fname)); sleep 1; open(F, "<$fname") or die "coundn't open: $!"; @buf = <F>; foreach $line (@buf) { # why do we need to sleep ? syswrite(SOCK, $line, length($line)) or die "can't write: $ +!"; sleep 1; } close F;
 editted by jeffa - s/pre/code/g 

In reply to IO over socket by neptuna

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.