home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / ssl / do_https2.al < prev    next >
Encoding:
Text File  |  2004-03-20  |  606 b   |  21 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 1966 "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) = &do_https3;
  12.     return ($page, $response,
  13.         map( { ($h,$v)=/^(\S+)\:\s*(.*)$/; (uc($h),$v); }
  14.         split(/\s?\n/, $headers)
  15.         )
  16.         );
  17. }
  18.  
  19. # end of Net::SSLeay::do_https2
  20. 1;
  21.