/usr/lib64/perl5/vendor_perl/auto/Net/SSLeay
# 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 1159 "blib/lib/Net/SSLeay.pm (autosplit into blib/lib/auto/Net/SSLeay/ssl_read_all.al)" sub ssl_read_all { my ($ssl,$how_much) = @_; $how_much = 2000000000 unless $how_much; my ($got, $rv, $errs); my $reply = ''; while ($how_much > 0) { ($got, $rv) = Net::SSLeay::read($ssl, ($how_much > 32768) ? 32768 : $how_much ); if (! defined $got) { my $err = Net::SSLeay::get_error($ssl, $rv); if ($err != Net::SSLeay::ERROR_WANT_READ() and $err != Net::SSLeay::ERROR_WANT_WRITE()) { $errs = print_errs('SSL_read'); last; } next; } $how_much -= blength($got); debug_read(\$reply, \$got) if $trace>1; last if $got eq ''; # EOF $reply .= $got; } return wantarray ? ($reply, $errs) : $reply; } # end of Net::SSLeay::ssl_read_all 1;
.
Edit
..
Edit
SSLeay.so
Edit
autosplit.ix
Edit
debug_read.al
Edit
do_https.al
Edit
do_https2.al
Edit
do_https3.al
Edit
do_https4.al
Edit
do_httpx2.al
Edit
do_httpx3.al
Edit
do_httpx4.al
Edit
dump_peer_certificate.al
Edit
get_http.al
Edit
get_http3.al
Edit
get_http4.al
Edit
get_https.al
Edit
get_https3.al
Edit
get_https4.al
Edit
get_httpx.al
Edit
get_httpx3.al
Edit
get_httpx4.al
Edit
head_http.al
Edit
head_http3.al
Edit
head_http4.al
Edit
head_https.al
Edit
head_https3.al
Edit
head_https4.al
Edit
head_httpx.al
Edit
head_httpx3.al
Edit
head_httpx4.al
Edit
http_cat.al
Edit
https_cat.al
Edit
httpx_cat.al
Edit
initialize.al
Edit
make_form.al
Edit
make_headers.al
Edit
new_x_ctx.al
Edit
open_proxy_tcp_connection.al
Edit
open_tcp_connection.al
Edit
post_http.al
Edit
post_http3.al
Edit
post_http4.al
Edit
post_https.al
Edit
post_https3.al
Edit
post_https4.al
Edit
post_httpx.al
Edit
post_httpx3.al
Edit
post_httpx4.al
Edit
put_http.al
Edit
put_http3.al
Edit
put_http4.al
Edit
put_https.al
Edit
put_https3.al
Edit
put_https4.al
Edit
put_httpx.al
Edit
put_httpx3.al
Edit
put_httpx4.al
Edit
randomize.al
Edit
set_cert_and_key.al
Edit
set_proxy.al
Edit
set_server_cert_and_key.al
Edit
ssl_read_CRLF.al
Edit
ssl_read_all.al
Edit
ssl_read_until.al
Edit
ssl_write_CRLF.al
Edit
ssl_write_all.al
Edit
sslcat.al
Edit
tcp_read_CRLF.al
Edit
tcp_read_all.al
Edit
tcp_read_until.al
Edit
tcp_write_CRLF.al
Edit
tcp_write_all.al
Edit
tcpcat.al
Edit
tcpxcat.al
Edit
want_X509_lookup.al
Edit
want_nothing.al
Edit
want_read.al
Edit
want_write.al
Edit