Re: [Openvpn-devel] Cipher problem on Mac OS X

2012-02-14 Thread Adriaan de Jong
> -Original Message- > From: Freek Dijkstra [mailto:pub...@macfreek.nl] > > Hi, Hi Freek, Sorry for the delay, but I've had some trouble replicating the bug. > > Sat Feb 11 22:46:37 2012 OpenVPN 2.x-master x86_64-apple-darwin11.2.0 > [SSL (OpenSSL)] [LZO2] [eurephia] [MH] [PF_INET6]

Re: [Openvpn-devel] [PATCH] Connection entry {tun, link}_mtu_defined not set correctly

2012-02-14 Thread Gert Doering
Hi, On Tue, Feb 14, 2012 at 11:48:47AM +0100, David Sommerseth wrote: > Commit 76809cae0eae07817160b423d3f9551df1a1d68e enabled setting MTU > variables inside blocks. But in that process, the > tun_mtu_defined and link_mtu_defined was not set as it should. > > By moving this out of the

[Openvpn-devel] [PATCH 3/3] Migrated x509_get_sha1_hash to use the garbage collector

2012-02-14 Thread Adriaan de Jong
Signed-off-by: Adriaan de Jong --- ssl_verify.c |7 ++- ssl_verify_backend.h | 11 ++- ssl_verify_openssl.c | 17 - ssl_verify_polarssl.c | 17 +++-- 4 files changed, 11 insertions(+), 41 deletions(-) diff --git

[Openvpn-devel] [PATCH 1/3] Migrated x509_get_subject to use of the garbage collector

2012-02-14 Thread Adriaan de Jong
This also cleans up a messy call in pkcs11.c to _openssl_get_subject, as discussed at FOSDEM. Signed-off-by: Adriaan de Jong --- pkcs11.c | 10 ++ pkcs11_backend.h |8 +++- pkcs11_openssl.c | 16 +++- pkcs11_polarssl.c

[Openvpn-devel] [PATCH 0/3] Use the garbage collector when retrieving x509 fields

2012-02-14 Thread Adriaan de Jong
A number of the x509 functions allocated memory directly, instead of using the default OpenVPN convention: the garbage collector. This is fixed in this series of patches. Adriaan