Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 09ee4ff86605709785f6d4a0a613343d > files > 14

perl-IO-Socket-SSL-0.80-1mdk.i586.rpm

#
# test HTTP::Daemon with IO::Socket::SSL (aspa@kronodoc.fi).
#
# $Id: daemon.pl,v 1.4 2001/01/15 13:38:32 aspa Exp $.
#

# NB: to use this demo script HTTP::Daemon and
# HTTP::Daemon::ClientConn have to be direct descendents of
# IO::Socket::SSL instead of IO::Socket::INET.


use HTTP::Daemon;
use HTTP::Status;
use IO::Socket::SSL;


my $debug = $ARGV[0] || "";
if($debug eq "DEBUG") { $IO::Socket::SSL::DEBUG = 1; }


$r = IO::Socket::SSL::context_init({
				    SSL_verify_mode => 0x00,
				    SSL_server => 1,
			   });

my $d = HTTP::Daemon->new(UseSSL => 1);
print "Please contact me at: <URL:", $d->url, ">\n";
while (my $c = $d->accept) {
  print STDERR "accepted.\n";
  while (my $r = $c->get_request) {
    if ($r->method eq 'GET' and $r->url->path eq "/xyzzy") {
      $c->send_file_response("/etc/hosts");
    } else {
      $c->send_error(RC_FORBIDDEN)
    }
  }
  $c->close;
  undef($c);
}