home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / LWP / Protocol / https.pm < prev    next >
Text File  |  1997-08-05  |  226b  |  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.