home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / perl5 / URI / https.pm < prev    next >
Encoding:
Perl POD Document  |  2010-02-03  |  107 b   |  10 lines

  1. package URI::https;
  2. require URI::http;
  3. @ISA=qw(URI::http);
  4.  
  5. sub default_port { 443 }
  6.  
  7. sub secure { 1 }
  8.  
  9. 1;
  10.