I'm trying to write a server for doing some things remotely on another computer. I start the server, and it waits for me to connect, then use a continuous loop for the duration until a condition breaks it.
my $server = IO::Socket::INET->new(LocalPort => 666, Type=> SOCK_STREAM, Listen => 0, Proto => "tcp"); die "Can't open socket" if (!$server); [...the main loop...] close($server); log_msg("Connection lost.\n");
I added the close() because when the program ends by itself this way (as opposed to being terminated with ^C), the port is evidently left blocked -- when I try to restart

Can't open socket

Which I take that to mean the port is not available. This lasts about a minute then the port is free again. Why would it be freed by ^C but not by close()?

The OS is linux.

In reply to closing socket/port by halfcountplus

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.