home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-11-18 | 228 b | 17 lines | [TEXT/McPL] |
- #
- # $Id: https.pm,v 1.1 1997/11/18 00:33:20 neeri Exp $
-
- package LWP::Protocol::https;
-
- require LWP::SecureSocket;
-
- require LWP::Protocol::http;
- @ISA=qw(LWP::Protocol::http);
-
- sub _new_socket
- {
- LWP::SecureSocket->new;
- }
-
- 1;
-