[Openvpn-devel] OpenVPN 2.5.6 released

2022-03-16 Thread Samuli Seppänen
The OpenVPN community project team is proud to release OpenVPN 2.5.6. This is mostly a bugfix release including one security fix ("Disallow multiple deferred authentication plug-ins.", CVE: 2022-0547). More details are available in Changes.rst:

Re: [Openvpn-devel] [PATCH master+release/2.5] vcpkg-ports\pkcs11-helper: shorten patch filename

2022-03-16 Thread Frank Lichtenheld
> Lev Stipakov hat am 16.03.2022 14:54 geschrieben: > > > From: Lev Stipakov > > "make dist" uses tar which breaks on long filenames: I think this should specfically mention "uses tar -o". Most modern usages of tar do not have this limit. Regards, -- Frank Lichtenheld

[Openvpn-devel] [PATCH master+release/2.5] vcpkg-ports\pkcs11-helper: shorten patch filename

2022-03-16 Thread Lev Stipakov
From: Lev Stipakov "make dist" uses tar which breaks on long filenames: tar: openvpn-2.5.6/contrib/vcpkg-ports/pkcs11-helper/0003-config-w32-vc.h.in-indicate-OpenSSL-EC-support.patch: file name is too long (max 99); not dumped tar: Exiting with failure status due to previous errors

Re: [Openvpn-devel] [PATCH] add support for --dns option

2022-03-16 Thread Heiko Hund
On Samstag, 12. März 2022 14:58:10 CET Heiko Hund wrote: > +name_ok = openvpn_snprintf(env_name, sizeof(env_name), > "dns_search_domain_%d", i) && name_ok; With some distance, I still like the &= version better from a readability standpoint. Even though it's a bit unclean. Heiko

[Openvpn-devel] [PATCH] Fix IV_PLAT_VER and UV_ variables sent without push-peer-info

2022-03-16 Thread Arne Schwabe
Commit 8c72d7981 changed the push_peer_info_detail to have an additional level for P2P NCP and shifting most of the other levels with 1. The check for UV_ and IV_PLAT_VER was not changed accordingly. --- src/openvpn/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [Openvpn-devel] [PATCH applied] Re: vcpkg-ports: add openssl 1.1.1n

2022-03-16 Thread Frank Lichtenheld
> Gert Doering hat am 16.03.2022 09:39 geschrieben: > > > Acked-by: Gert Doering > > As discussed on IRC, we need to build with the new security-fixed 1.1.1n > release, and vcpkg port is not there yet. Somewhat annoying, we should > find a better way to decouple "build" and "openvpn

[Openvpn-devel] [PATCH applied] Re: vcpkg-ports: add openssl 1.1.1n

2022-03-16 Thread Gert Doering
Acked-by: Gert Doering As discussed on IRC, we need to build with the new security-fixed 1.1.1n release, and vcpkg port is not there yet. Somewhat annoying, we should find a better way to decouple "build" and "openvpn main repo" commits... Your patch has been applied to the release/2.5

[Openvpn-devel] [PATCH] vcpkg-ports: add openssl 1.1.1n

2022-03-16 Thread Lev Stipakov
From: Lev Stipakov Since vcpkg official repo doesn't have openssl 1.1.1n yet, add own port - just copy files from vcpkg\ports\openssl (excluding unix and uwp directories) and replace 1.1.1m with 1.1.1n, not forgetting about SHA512. Signed-off-by: Lev Stipakov ---