home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 7: Programming
/
CDAT7.iso
/
Share
/
Editores
/
Perl5
/
perl
/
lib
/
site
/
LWP
/
Protocol
/
https.pm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl POD Document
|
1997-08-10
|
226 b
|
17 lines
#
# $Id: https.pm,v 1.2 1997/08/05 14:36:58 aas Exp $
package LWP::Protocol::https;
require LWP::SecureSocket;
require LWP::Protocol::http;
@ISA=qw(LWP::Protocol::http);
sub _new_socket
{
LWP::SecureSocket->new;
}
1;