home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / LWP / Protocol / https.pm < prev    next >
Text File  |  1997-11-18  |  228b  |  17 lines

  1. #
  2. # $Id: https.pm,v 1.1 1997/11/18 00:33:20 neeri 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.