[Openvpn-devel] [PATCH] Remove size limit for files inlined in config

2015-04-27 Thread Steffan Karger
As described in trac #484, the current inline file size limit of 1 bytes is becoming an issue for some users. Since RSA keys and signature sizes are increasing, we need to adjust our limits. As #484 reports, 1 can be too small for PKCS#12 files with 4K RSA keys. Instead of postponing thi

[Openvpn-devel] Today's community IRC meeting moved to next Monday

2015-04-27 Thread Samuli Seppänen
Hi, Unlike claimed earlier[1] we won't have an IRC meeting today. We will have a meeting next Monday, though: As can be seen, the agenda is still pretty empty, so feel free to suggest new topics. -- Samuli Seppänen Community Manage

[Openvpn-devel] [PATCH] Call daemon() before initializing crypto library

2015-04-27 Thread Steffan Karger
But keep the chdir to / at the place where deamon() was before, to preserve the current behaviour wrt relative paths in the config. This should fix the issue reported in trac #480, without changing the behaviour visible to the end user. Note that by moving the daemon() call to an earlier stage of

Re: [Openvpn-devel] [PATCH] m4: enable silent build

2015-04-27 Thread David Sommerseth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 15/04/15 14:07, Gert Doering wrote: > Hi, > > On Wed, Apr 15, 2015 at 09:19:45AM +0200, Matthias Andree wrote: >> - it changes policy through the [yes] argument to >> AM_SILENT_RULES(). This flips the switch for the default without >> good reason,

Re: [Openvpn-devel] [PATCH] m4: enable silent build

2015-04-27 Thread Gert Doering
Hi, On Mon, Apr 27, 2015 at 04:48:38PM +0200, David Sommerseth wrote: > Just tested a ./configure (used automake 1.13.4 on RHEL7) with > - --enable-silent-rules. That worked like a charm out-of-the-box > without any patching. David, thanks for testing and reporting. With this, I think we can le

Re: [Openvpn-devel] [PATCH] m4: enable silent build

2015-04-27 Thread Matthias Andree
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 27.04.2015 um 16:48 schrieb David Sommerseth: > Having this said, if you do builds on systems with a more modern > automake, I do want to encourage people to run 'make V=0' or use > ./configure --enable-silent-rules. This will ensure we can capture

Re: [Openvpn-devel] [PATCH] Call daemon() before initializing crypto library

2015-04-27 Thread Gert Doering
Hi, On Mon, Apr 27, 2015 at 04:28:57PM +0200, Steffan Karger wrote: > But keep the chdir to / at the place where deamon() was before, to preserve > the current behaviour wrt relative paths in the config. > > This should fix the issue reported in trac #480, without changing the > behaviour visible

[Openvpn-devel] [PATCH] assume res_init() is always there.

2015-04-27 Thread Gert Doering
Previously, the code tried to find res_init(), and on some systems got it wrong in configure, silently not-using res_init(), leading to unexpected failures to re-init the resolver. We know that all supported OSes (except Windows) have res_init(), so change the call to "#ifndef WIN32", and adjust c

Re: [Openvpn-devel] [PATCH] assume res_init() is always there.

2015-04-27 Thread Gert Doering
Hi, On Mon, Apr 27, 2015 at 09:27:21PM +0200, Gert Doering wrote: > Previously, the code tried to find res_init(), and on some systems > got it wrong in configure, silently not-using res_init(), leading > to unexpected failures to re-init the resolver. ... for the record: tested on FreeBSD 9.1, G