home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / do_https2.al < prev    next >
Text File  |  2004-02-17  |  653b  |  22 lines

  1. # NOTE: Derived from blib/lib/Net/SSLeay.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package Net::SSLeay;
  5.  
  6. #line 1983 "blib/lib/Net/SSLeay.pm (autosplit into blib/lib/auto/Net/SSLeay/do_https2.al)"
  7. ### do_https2() is a legacy version in the sense that it is unable
  8. ### to return all instances of duplicate headers.
  9.  
  10. sub do_https2 {
  11.     my ($page, $response, $headers, $server_cert) = &do_https3;
  12.     X509_free($server_cert) if defined $server_cert;
  13.     return ($page, $response,
  14.         map( { ($h,$v)=/^(\S+)\:\s*(.*)$/; (uc($h),$v); }
  15.         split(/\s?\n/, $headers)
  16.         )
  17.         );
  18. }
  19.  
  20. # end of Net::SSLeay::do_https2
  21. 1;
  22.