Codebase list libnet-sslglue-perl / c8c5901
New upstream snapshot. Debian Janitor 1 year, 3 months ago
6 changed file(s) with 18 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
33 "unknown"
44 ],
55 "dynamic_config" : 1,
6 "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150001",
6 "generated_by" : "ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010",
77 "license" : [
8 "unknown"
8 "perl_5"
99 ],
1010 "meta-spec" : {
1111 "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
12 "version" : "2"
12 "version" : 2
1313 },
1414 "name" : "Net-SSLGlue",
1515 "no_index" : {
4141 "url" : "https://github.com/noxxi/p5-net-sslglue"
4242 }
4343 },
44 "version" : "1.058"
44 "version" : "1.058",
45 "x_serialization_backend" : "JSON::PP version 4.07"
4546 }
66 configure_requires:
77 ExtUtils::MakeMaker: '0'
88 dynamic_config: 1
9 generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150001'
10 license: unknown
9 generated_by: 'ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010'
10 license: perl
1111 meta-spec:
1212 url: http://module-build.sourceforge.net/META-spec-v1.4.html
1313 version: '1.4'
2121 resources:
2222 repository: https://github.com/noxxi/p5-net-sslglue
2323 version: '1.058'
24 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
66 WriteMakefile(
77 NAME => 'Net::SSLGlue',
88 VERSION_FROM => 'lib/Net/SSLGlue.pm',
9 LICENSE => 'perl_5',
910 PREREQ_PM => {
1011 'IO::Socket::SSL' => 1.19,
1112 },
0 libnet-sslglue-perl (1.058+git20181118.1.7dab311-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Thu, 19 Jan 2023 22:02:07 -0000
5
06 libnet-sslglue-perl (1.058-2) unstable; urgency=medium
17
28 [ gregor herrmann ]
160160 Net::SSLGlue::LWP - proper certificate checking for https in LWP
161161
162162 =head1 SYNOPSIS
163 u
163
164164 use Net::SSLGlue::LWP SSL_ca_path => ...;
165165 use LWP::Simple;
166166 get( 'https://www....' );
203203 =item new
204204
205205 The method C<new> of L<Net::SSLGlue::Socket> can have the argument SSL. If this
206 is true the SSL upgrade will be done immediatly. If not set any SSL_* args will
206 is true the SSL upgrade will be done immediately. If not set any SSL_* args will
207207 still be saved and used at a later start_SSL call.
208208
209209 =item start_SSL
228228 pending data before trying a select.
229229 Because SSL needs to read the whole frame before decryption can be done, a
230230 successful return of can_read is no guarantee that data can be read
231 immediatly, only that new data are either available or in the process of
231 immediately, only that new data are either available or in the process of
232232 arriving.
233233
234234 =back