Re: [Openvpn-devel] [PATCH 2/2] Removed support for calling gc_malloc with a NULL gc_arena struct

2012-02-05 Thread David Sommerseth
On 05/02/12 16:57, Gert Doering wrote: Hi, On Sun, Feb 05, 2012 at 12:51:25PM +0100, Adriaan de Jong wrote: Signed-off-by: Adriaan de Jong --- buffer.c | 29 ++--- 1 files changed, 10 insertions(+), 19 deletions(-) diff --git a/buffer.c

Re: [Openvpn-devel] [PATCH 2/2] Removed support for calling gc_malloc with a NULL gc_arena struct

2012-02-05 Thread Gert Doering
Hi, On Sun, Feb 05, 2012 at 12:51:25PM +0100, Adriaan de Jong wrote: > Signed-off-by: Adriaan de Jong > --- > buffer.c | 29 ++--- > 1 files changed, 10 insertions(+), 19 deletions(-) > > diff --git a/buffer.c b/buffer.c > index 2f8e4b8..c39bbcb

Re: [Openvpn-devel] FOSDEM

2012-02-05 Thread Gert Doering
Hi, On Sun, Feb 05, 2012 at 04:10:06PM +0100, Paul Bakker wrote: > Hi OpenVPN Devel.. > > As promised ;) I'm now subscribed to the OpenVPN devel list. Cool, welcome! > So if you need me for any questions related to PolarSSL, just mail.. So is the blowfish support already finished? ;-) gert,

[Openvpn-devel] FOSDEM

2012-02-05 Thread Paul Bakker
Hi OpenVPN Devel.. As promised ;) I'm now subscribed to the OpenVPN devel list. So if you need me for any questions related to PolarSSL, just mail.. Regards, Paul Bakker Maintainer PolarSSL (http://polarssl.org)

Re: [Openvpn-devel] OpenBSD platform cleanup

2012-02-05 Thread Gert Doering
Hi, On Sun, Feb 05, 2012 at 03:02:40PM +0100, David Sommerseth wrote: > >as promised :-) - it now passes all my t_client.rc tests, and smells > >a lot less funny. We now might even throw out all these weird > >#ifdefs from tun.h... > > Maybe an attachment would be nice? ;-) And I thought you

Re: [Openvpn-devel] add ipv6 related env variables to openvpn.8

2012-02-05 Thread David Sommerseth
On 04/02/12 18:21, Gert Doering wrote: Hi, as discussed today. Pretty much cut-and-paste from the ipv4 counterparts. gert ACK. Applied to master on -stable and -testing. commit 04d66ef064d5ac1ade4b30329b87239aac95d821 Author: Gert Doering List-Post:

[Openvpn-devel] OpenBSD platform cleanup

2012-02-05 Thread Gert Doering
Hi, as promised :-) - it now passes all my t_client.rc tests, and smells a lot less funny. We now might even throw out all these weird #ifdefs from tun.h... gert -- USENET is *not* the non-clickable part of WWW! //www.muc.de/~gert/

[Openvpn-devel] [PATCH] remove the --auto-proxy option from openvpn

2012-02-05 Thread Heiko Hund
During discussion on FOSDEM 2012 it was decided that proxy auto detection is best done in the GUI as it's highly platform specific and shouldn't be handled in openvpn itself for every supported platform in openvpn itself. This removes --auto-proxy from openvpn. Signed-off-by: Heiko Hund

Re: [Openvpn-devel] [PATCH 1/2] Moved out of memory prototype to error.h, as the definition is in error.c

2012-02-05 Thread David Sommerseth
On 05/02/12 12:51, Adriaan de Jong wrote: Signed-off-by: Adriaan de Jong --- buffer.h |4 +--- error.h |3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) ACK to both patches. Applied to master on -testing and -stable. commit

[Openvpn-devel] [PATCH 2/2] Removed support for calling gc_malloc with a NULL gc_arena struct

2012-02-05 Thread Adriaan de Jong
Signed-off-by: Adriaan de Jong --- buffer.c | 29 ++--- 1 files changed, 10 insertions(+), 19 deletions(-) diff --git a/buffer.c b/buffer.c index 2f8e4b8..c39bbcb 100644 --- a/buffer.c +++ b/buffer.c @@ -310,28 +310,19 @@ gc_malloc (size_t size, bool

[Openvpn-devel] [PATCH 1/2] Moved out of memory prototype to error.h, as the definition is in error.c

2012-02-05 Thread Adriaan de Jong
Signed-off-by: Adriaan de Jong --- buffer.h |4 +--- error.h |3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/buffer.h b/buffer.h index e6113f9..6c79007 100644 --- a/buffer.h +++ b/buffer.h @@ -26,6 +26,7 @@ #define BUFFER_H #include "basic.h"