Delfer has asked for the wisdom of the Perl Monks concerning the following question:
I test the HTTP::Daemon module,but it didn't output the#!/usr/bin/perl use HTTP::Daemon; use HTTP::Status; $d=HTTP::Daemon->new(LocalAddr=>'localhost',LocalPort=>6666); while(1) { $nd=$d->accept; $nd->send_error(RC_FORBIDDEN); }
Edited 15 Jul 01, 08:45 pm (PDT) by footpad
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Test HTTP::Daemon
by chromatic (Archbishop) on Apr 19, 2000 at 19:38 UTC | |
by btrott (Parson) on Apr 19, 2000 at 19:42 UTC |