2008-10-09 15:17:50 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.16:
v1.16
- change code for SSL_check_crl to use X509_STORE_set_flags instead of
X509_STORE_CTX_set_flags based on bug report from
<tjtoocool[AT]phreaker[DOT]net >
- change opened() to report -1 if the IO::Handle is open, but the
SSL connection failed, needed with HTTP::Daemon::SSL which will send
an error mssage over the unencrypted socket
|
2008-09-06 17:44:04 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.15:
v1.15
- change internal behavior when SSL handshake failed (like when verify
callback returned an error) in the hope to fix spurios errors in
t/auto_verify_hostname.t
|
2008-08-03 22:47:11 by Havard Eidnes | Files touched by this commit (2) |
Log message:
Update from version 1.13 to 1.14. Changes:
v1.14
- added support for verification of hostname from certificate
including subjectAltNames, support for IDN etc based on patch and
input from christopher[AT]odenbachs[DOT]de and
achim[AT]grolmsnet[DOT]de.
It is also possible to get more information from peer_certificate
based on this patch. See documentation for peer_certificate and
verify_hostname
- automatic verification of hostnames with SSL_verifycn_scheme and
SSL_verifycn_name
- global setting of default context options like SSL_verifycn_scheme,
SSL_verify_mode with set_ctx_defaults
- fix import of inet4,inet6 which got broken within 1.13_X.
Thanks to <at[AT]altlinux[DOT]ru> for bugreport and patch
- clarified and enhanced debugging supppport based on bugreport
http://rt.cpan.org/Ticket/Display.html?id=32960
- put information into README regarding the supported and recommanded
version of Net::SSLeay
|
2008-02-05 12:36:04 by OBATA Akio | Files touched by this commit (2) |
Log message:
Update p5-IO-Socket-SSL to 1.13.
v1.13
- removed CLONE_SKIP which was added in 1.03 because this breaks
windows forking. Handled threads/windows forking better by making
sure that CTX from Net::SSLeay gets not freed multiple times from
different threads after cloning/forking
- removed setting LocalPort to 0 in tests, instead leave it undef
if a random port should be allocated. This should fix build problems
with 5.6.1. Thanks to <andrew[DOT]benham[AT]thus[DOT]net>
|
2007-11-01 09:31:40 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.12:
v1.12
- treat timeouts of 0 for accept_SSL and connect_SSL like no timeout,
like IO::Socket does.
|
2007-10-25 18:59:59 by Johnny C. Lam | Files touched by this commit (980) |
Log message:
Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
|
2007-10-17 22:50:06 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.11:
v1.11
- fixed errors in accept_SSL which would work when called from start_SSL
but not from accept
v1.10
- start_SSL, accept_SSL and connect_SSL have argument for Timeout
so that the SSL handshake will not block forever. Only used if the
socket is blocking. If not set the Timeout value from the underlying
IO::Socket is used
|
2007-09-18 23:17:18 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.09:
v1.09
- new method stop_SSL as opposite of start_SSL based on a idea
of Bron Gondwana <brong[AT]fastmail[DOT]fm>
To support this method the SSL_shutdown handling had to be
fixed, e.g. in close a proper unidirectional shutdown
should be done while in stop_SSL a bidirectional shutdown
- try to make it clearer that thread support is buggy
|
2007-08-30 08:12:11 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.08:
v1.08
- make sure that Scalar::Util has support for dualvar
(Makefile.PL,SSL.pm) because the perl-only version has
has no dualvar
|
2007-06-13 01:02:40 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.07:
v1.07
- fix t/nonblock.t on systems which have by default a larger
socket buffer. Set SO_SNDBUF explicitly with setsockopt
to force smaller writes on the socket
|