Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

HTTP::Daemon with SSL

by bwana147 (Pilgrim)
on Mar 18, 2003 at 15:40 UTC ( #244030=snippet: print w/replies, xml ) Need Help??
Description:

I've been looking for some way of making HTTP::Daemon work over SSL. I could find this thread very useful, but most of the given solutions implied patching Daemon.pm, stopping it from serving as a regular http daemon.

The trick here is simply to dynamically change the inheritance of HTTP::Daemon to make it an heir of IO::Socket::SSL instead of IO::Socket::INET

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

@HTTP::Daemon::ISA = qw/ IO::Socket::SSL /;
@HTTP::Daemon::ClientConn::ISA = qw/ IO::Socket::SSL /;

my $server = new HTTP::Daemon
    SSL_cert_file => 'cert.pem',
    SSL_key_file => 'key.pm',
    LocalPort => 443,
    ReuseAddr => 1,
;

while ( my $client = $server->accept() ) {
    ...
    $client->close(SSL_no_shutdown => 1);
}

$server->close(SSL_no_shutdown => 1);
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: snippet [id://244030]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2023-11-29 18:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?