/usr/local/lib64/perl5.legacy/auto/Net/SSLeay
NameSizeModeActions
.packlist43980644editdlrm
autosplit.ix15810444editdlrm
debug_read.al6770444editdlrm
do_https.al5080444editdlrm
do_https2.al4460444editdlrm
do_https3.al4660444editdlrm
do_https4.al3570444editdlrm
do_httpx2.al5590444editdlrm
do_httpx3.al15580444editdlrm
do_httpx4.al5440444editdlrm
dump_peer_certificate.al9580444editdlrm
get_http.al3160444editdlrm
get_http3.al3190444editdlrm
get_http4.al3190444editdlrm
get_https.al3190444editdlrm
get_https3.al3220444editdlrm
get_https4.al3220444editdlrm
get_httpx.al3160444editdlrm
get_httpx3.al3190444editdlrm
get_httpx4.al3190444editdlrm
head_http.al3190444editdlrm
head_http3.al3220444editdlrm
head_http4.al3460444editdlrm
head_https.al3220444editdlrm
head_https3.al3250444editdlrm
head_https4.al3330444editdlrm
head_httpx.al3190444editdlrm
head_httpx3.al3220444editdlrm
head_httpx4.al3990444editdlrm
https_cat.al30280444editdlrm
httpx_cat.al5580444editdlrm
http_cat.al12030444editdlrm
initialize.al8140444editdlrm
make_form.al6040444editdlrm
make_headers.al5750444editdlrm
new_x_ctx.al12280444editdlrm
open_proxy_tcp_connection.al12840444editdlrm
open_tcp_connection.al14820444editdlrm
post_http.al3180444editdlrm
post_http3.al3210444editdlrm
post_http4.al3210444editdlrm
post_https.al3210444editdlrm
post_https3.al3240444editdlrm
post_https4.al3240444editdlrm
post_httpx.al3180444editdlrm
post_httpx3.al3210444editdlrm
post_httpx4.al3210444editdlrm
put_http.al3160444editdlrm
put_http3.al3190444editdlrm
put_http4.al3190444editdlrm
put_https.al3190444editdlrm
put_https3.al3220444editdlrm
put_https4.al3220444editdlrm
put_httpx.al3160444editdlrm
put_httpx3.al3190444editdlrm
put_httpx4.al3190444editdlrm
randomize.al10270444editdlrm
set_cert_and_key.al8050444editdlrm
set_proxy.al5400444editdlrm
set_server_cert_and_key.al4130444editdlrm
sslcat.al31240444editdlrm
SSLeay.bs00444editdlrm
SSLeay.so15898120555editdlrm
ssl_read_all.al8010444editdlrm
ssl_read_CRLF.al3840444editdlrm
ssl_read_until.al31110444editdlrm
ssl_write_all.al57330444editdlrm
ssl_write_CRLF.al8120444editdlrm
tcpcat.al13580444editdlrm
tcpxcat.al4850444editdlrm
tcp_read_all.al7560444editdlrm
tcp_read_CRLF.al4000444editdlrm
tcp_read_until.al9700444editdlrm
tcp_write_all.al12310444editdlrm
tcp_write_CRLF.al7930444editdlrm
want_nothing.al3570444editdlrm
want_read.al3090444editdlrm
want_write.al3120444editdlrm
want_X509_lookup.al4410444editdlrm
Edit: /usr/local/lib64/perl5.legacy/auto/Net/SSLeay/do_httpx3.al (1558B)
# 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 1295 "blib/lib/Net/SSLeay.pm (autosplit into blib/lib/auto/Net/SSLeay/do_httpx3.al)" sub do_httpx3 { my ($method, $usessl, $site, $port, $path, $headers, $content, $mime_type, $crt_path, $key_path) = @_; my ($response, $page, $h,$v); my $len = blength($content); if ($len) { $mime_type = "application/x-www-form-urlencoded" unless $mime_type; $content = "Content-Type: $mime_type$CRLF" . "Content-Length: $len$CRLF$CRLF$content"; } else { $content = "$CRLF$CRLF"; } my $req = "$method $path HTTP/1.0$CRLF"; unless (defined $headers && $headers =~ /^Host:/m) { $req .= "Host: $site"; unless (($port == 80 && !$usessl) || ($port == 443 && $usessl)) { $req .= ":$port"; } $req .= $CRLF; } $req .= (defined $headers ? $headers : '') . "Accept: */*$CRLF$content"; warn "do_httpx3($method,$usessl,$site:$port)" if $trace; my ($http, $errs, $server_cert) = httpx_cat($usessl, $site, $port, $req, $crt_path, $key_path); return (undef, "HTTP/1.0 900 NET OR SSL ERROR$CRLF$CRLF$errs") if $errs; $http = '' if !defined $http; ($headers, $page) = split /\s?\n\s?\n/, $http, 2; warn "headers >$headers< page >>$page<< http >>>$http<<<" if $trace>1; ($response, $headers) = split /\s?\n/, $headers, 2; return ($page, $response, $headers, $server_cert); } # end of Net::SSLeay::do_httpx3 1;