mifflin has asked for the wisdom of the Perl Monks concerning the following question:
Any ideas?sub send_status_line { my($self, $status, $message, $proto) = @_; return if $self->antique_client; $status ||= RC_OK; $message ||= status_message($status) || ""; $proto ||= $HTTP::Daemon::PROTO || "HTTP/1.1"; print STDOUT "$$ ",__PACKAGE__,"::send_status_line before print\n" +; print $self "$proto $status $message$CRLF"; print STDOUT "$$ ",__PACKAGE__,"::send_status_line after print\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTTP::Daemon aborting in send_status_line?
by sgifford (Prior) on Apr 23, 2004 at 02:58 UTC | |
by mifflin (Curate) on Apr 23, 2004 at 03:24 UTC | |
by sgifford (Prior) on Apr 23, 2004 at 05:25 UTC | |
by mifflin (Curate) on Apr 23, 2004 at 06:26 UTC | |
by bart (Canon) on Apr 23, 2004 at 08:44 UTC | |
| |
|
Re: HTTP::Daemon aborting in send_status_line?
by Belgarion (Chaplain) on Apr 23, 2004 at 01:22 UTC |