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:
Perl POD Document  |  1997-08-10  |  226 b   |  17 lines

  1. #
  2. # $Id: https.pm,v 1.2 1997/08/05 14:36:58 aas Exp $
  3.  
  4. package LWP::Protocol::https;
  5.  
  6. require LWP::SecureSocket;
  7.  
  8. require LWP::Protocol::http;
  9. @ISA=qw(LWP::Protocol::http);
  10.  
  11. sub _new_socket
  12. {
  13.     LWP::SecureSocket->new;
  14. }
  15.  
  16. 1;
  17.