[Openvpn-devel] Summary of the IRC meeting (7th July 2011)

2011-07-07 Thread Samuli Seppänen
Hi, Here's the summary of the previous community meeting. --- COMMUNITY MEETING Place: #openvpn-devel on irc.freenode.net List-Post: openvpn-devel@lists.sourceforge.net Date: Thursday, 7th July 2011 Time: 18:00 UTC Planned meeting topics for this meeting were on this page:

Re: [Openvpn-devel] Bug: extended x509-username-field broken in git

2011-07-07 Thread Adriaan de Jong
On Wed, Jul 6, 2011 at 6:55 PM, Markus Koetter < koet...@rrzn-hiwi.uni-hannover.de> wrote: > On 07/05/2011 03:15 PM, David Sommerseth wrote: > >> Can you please use git bisect to locate the offending commit? >> > > I figured out this never really worked with openvpn git at all. > During discussing

[Openvpn-devel] Topics for today's meeting

2011-07-07 Thread Samuli Seppänen
Hi, We're having an IRC meeting today, starting at 18:00 UTC on #openvpn-de...@irc.freenode.net. Current topic list is here: If you have any other things you'd like to bring up, respond to this mail, send me mail privately or add the

Re: [Openvpn-devel] [PATCH] Further improvements to plugin support:

2011-07-07 Thread Matthias Andree
Am 07.07.2011 10:19, schrieb Adriaan de Jong: > - Renamed struct entries to explicitly show them as disabled > - Added a warning if USE_SSL is enabled, but neither ssl_verify_openssl.h or > ssl_verify_polarssl.h is included > - If neither of those files is included, disable ssl support for a pl

Re: [Openvpn-devel] [PATCH] Fixes for the plugin system:

2011-07-07 Thread Matthias Andree
Am 07.07.2011 09:27, schrieb Adriaan de Jong: > - Removed the dependency on an SSL library for USE_SSL when creating non-SSL > plugins > - Fixed example plugin code to include USE_SSL when needed > > Signed-off-by: Adriaan de Jong > diff --git a/openvpn-plugin.h b/openvpn-plugin.h > index 9cce

Re: [Openvpn-devel] PolarSSL patches

2011-07-07 Thread chantra
On Thu, 2011-07-07 at 09:35 +0200, David Sommerseth wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 07/07/11 01:08, chantra wrote: > > Samuli, > > > > You will need patch openvpn-plugin.h > > > > diff --git a/openvpn-plugin.h b/openvpn-plugin.h > > index 9cce9d8..529a1c6 100644

[Openvpn-devel] [PATCH] Further improvements to plugin support:

2011-07-07 Thread Adriaan de Jong
- Renamed struct entries to explicitly show them as disabled - Added a warning if USE_SSL is enabled, but neither ssl_verify_openssl.h or ssl_verify_polarssl.h is included - If neither of those files is included, disable ssl support for a plugin including openvpn-plugin.h Signed-off-by: Adria

Re: [Openvpn-devel] PolarSSL patches

2011-07-07 Thread David Sommerseth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/07/11 01:08, chantra wrote: > Samuli, > > You will need patch openvpn-plugin.h > > diff --git a/openvpn-plugin.h b/openvpn-plugin.h > index 9cce9d8..529a1c6 100644 > --- a/openvpn-plugin.h > +++ b/openvpn-plugin.h > @@ -25,12 +25,8 @@ > #ifndef

Re: [Openvpn-devel] PolarSSL patches

2011-07-07 Thread Adriaan de Jong
> From: chantra [mailto:chan...@debuntu.org] > Sent: donderdag 7 juli 2011 1:08 > I believe the plugins should not need to know if openvpn uses polarssl or > openssl... that might meant that openvpn will need to provide a generic x509 > cert library to > be used by openvpn plugins. The backends

[Openvpn-devel] [PATCH] Fixes for the plugin system:

2011-07-07 Thread Adriaan de Jong
- Removed the dependency on an SSL library for USE_SSL when creating non-SSL plugins - Fixed example plugin code to include USE_SSL when needed Signed-off-by: Adriaan de Jong --- init.c |2 +- misc.c |2 +- multi.c |8

Re: [Openvpn-devel] PolarSSL patches

2011-07-07 Thread Adriaan de Jong
Hi Samuli, Since plugins have support for X.509 certificates, they need to enable either USE_OPENSSL or USE_POLARSSL, and include the appropriate X.509 backend (ssl_verify_*.h). Since neither was defined, the file was not included and therefore the build failed. This is part of a larger proble