Allo all, I am attempting to check if certain specified ports are listening via TCP... This is how i check.. I notice that if the IP is not up, then the socket call will keep trying for "EVER" .. even with the eval ALARM set... What else can I do to timeout the socket connection event?
sub opensock { my $addr = $_[0]; my $port = $_[1]; my $sock; my $status = 0; $SIG{ALRM} = sub {die "$port timed out\n"}; eval { alarm(2); $sock = new IO::Socket::INET ( PeerAddr => $addr, PeerPort => $port, Proto => 'tcp', undef ); alarm (0); }; if ($sock) { $status=1; close($sock); } undef $sock; return $status; }

In reply to IO::Socket Connection Timeout lasts forever 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.