Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

HTTP::Daemon with SSL

by bwana147 (Pilgrim)
on Mar 18, 2003 at 15:40 UTC ( [id://244030]=CUFP: print w/replies, xml ) Need Help??

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: CUFP [id://244030]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-19 20:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found