home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / httpx_cat.al < prev    next >
Encoding:
Text File  |  2003-11-16  |  576 b   |  19 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 2125 "blib\lib\Net\SSLeay.pm (autosplit into blib\lib\auto\Net\SSLeay\httpx_cat.al)"
  7. sub httpx_cat {
  8.     my ($usessl, $site, $port, $req, $crt_path, $key_path) = @_;
  9.     warn "httpx_cat: usessl=$usessl ($site:$port)" if $trace;
  10.     if ($usessl) {
  11.     return https_cat($site, $port, $req, $crt_path, $key_path);
  12.     } else {
  13.     return http_cat($site, $port, $req);
  14.     }
  15. }
  16.  
  17. # end of Net::SSLeay::httpx_cat
  18. 1;
  19.