diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/auto/Net/SSLeay/tcpxcat.al')
-rwxr-xr-x | Master/tlpkg/tlperl/lib/auto/Net/SSLeay/tcpxcat.al | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/auto/Net/SSLeay/tcpxcat.al b/Master/tlpkg/tlperl/lib/auto/Net/SSLeay/tcpxcat.al new file mode 100755 index 00000000000..4e79ce00087 --- /dev/null +++ b/Master/tlpkg/tlperl/lib/auto/Net/SSLeay/tcpxcat.al @@ -0,0 +1,17 @@ +# NOTE: Derived from blib\lib\Net\SSLeay.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Net::SSLeay; + +#line 2286 "blib\lib\Net\SSLeay.pm (autosplit into blib\lib\auto\Net\SSLeay\tcpxcat.al)" +sub tcpxcat { + my ($usessl, $site, $port, $req, $crt_path, $key_path) = @_; + if ($usessl) { + return sslcat($site, $port, $req, $crt_path, $key_path); + } else { + return tcpcat($site, $port, $req); + } +} + +# end of Net::SSLeay::tcpxcat +1; |