Dear Monks, and my application (or at least I think it is). I have a module that instantiates an HTTP::Daemon and (I'm not yet sure if it's relevant) an IO::Select to tell me when a request is available.
my $d = HTTP::Daemon->new( 'LocalPort' => $port, 'ReuseAddr' => 1 ); print STDERR "DataServer::new: <URL:", $d->url, ">\n"; my $sel = new IO::Select($d);
Then after receiving the request, I call send_response to handle the HTTP request. Everything works fine.. EXCEPT if before I call send_response either the request (times out) or I kill the Http client (currently either wget or another HTTP::Daemon), my entire application dies. I've tried everything to save it. It literally just wants to die. The specific line it dies on lives in HTTP::Daemon in 'send_basic_header' when it tries to write to the socket handle:
print $self "Date: ", time2str(time), $CRLF;
if anyone has any thoughts or interesting ideas, I'm open to all suggestions.. thanks, Michael

In reply to HTTP::Daemon is killing me 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.