Thanks for the reply tachyon (and pg). I'm using Perl v5.6.1 build 631 on Win32. I'm also using Socket for TCP. I do have output autoflush on. I have it set at the top of the script $|=1; and I have select((select($socket), $|=1)[0]);

I tried all combinations of TCP_NODELAY and SO_LINGER but I still didn't get consistent results. Printing to the socket seems to work intermittently when I use those options or when I use no options at all.

If I call shutdown with 0, 1 or 2 and follow it with a close the msg doesn't get delivered. If I get rid of the close and just call shutdown with a 1 or 2 the msg doesn't get delivered. If I call shutdown($socket, 0) without a following close then the msg does get delivered.

I found the Socket FAQ to be an excellent resource. Thanks for the link. I found this part especially good. "Nagle's algorithm collects small packets together (no more than .2sec delay) and thereby reduces the amount of overhead bytes being transferred.". This is why the sleep 1; before the close worked. Even though I specified TCP_NODELAY, it appears that it is still buffering.

I write to the socket like this print $socket (pack("N", length($msg)), $msg); What would a similar syswrite look like? I can't seem to get syswrite to work at all. Syswrite will be my last test before I try and post some code. The sever is written in C++ so I'll have to try and emulate it and I'm not sure I'll have the same results in Perl.

Thanks again everyone.


In reply to Re^2: connect() & close() by monktim
in thread connect() & close() by monktim

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.