Re: [Openvpn-devel] OpenVPN 2.5.9 released

2023-02-20 Thread Matthias Andree
Am 16.02.23 um 18:52 schrieb Gert Doering: Hi, On Thu, Feb 16, 2023 at 08:48:26AM -0500, Jonathan K. Bullard wrote: On Thu, Feb 16, 2023 at 7:51 AM Frank Lichtenheld wrote: The OpenVPN community project team is proud to release OpenVPN 2.5.9. This is a small bugfix release. Was this sent a

[Openvpn-devel] [PATCH applied] Re: Disable DCO if proxy is set via management

2023-02-20 Thread Gert Doering
Patch looks reasonable. Not tested beyond "does it compile on Linux and MinGW?". Your patch has been applied to the master and release/2.6 branch. commit 45a1cb2ad85a50feded10dad706132bd8a7f6133 (master) commit 42cda5ad9e8542a48385eb2e0b7807773aa341f1 (release/2.6) Author: Lev Stipakov Date:

Re: [Openvpn-devel] [PATCH v2] Disabe DCO if proxy is set via management

2023-02-20 Thread Antonio Quartulli
Hi, On 20/02/2023 10:06, Lev Stipakov wrote: From: Lev Stipakov DCO doesn't support proxy and we already disable DCO is proxy is set in profile. Signed-off-by: Lev Stipakov Acked-by: Antonio Quartulli --- v2: use dco_enabled() helper function src/openvpn/init.c | 6 ++ 1 file

[Openvpn-devel] [PATCH applied] Re: Exit if a proper message instead of segfault on Android without management

2023-02-20 Thread Gert Doering
Acked-by: Gert Doering This code is all inside #ifdef TARGET_ANDROID, so I didn't test anything - but it looks all reasonable. Your patch has been applied to the master and release/2.6 branch. commit 3132bead497deca24dc638e151bf7194df6f4884 (master) commit

[Openvpn-devel] [PATCH] Exit if a proper message instead of segfault on Android without management

2023-02-20 Thread Arne Schwabe
The Android implementation is relying on the management interface to be always available. Trying to run the Android binary without the mangament interface outside the app leads to a segfault. Exit with a FATAL error instead. Signed-off-by: Arne Schwabe --- src/openvpn/manage.c | 4

[Openvpn-devel] [PATCH v2] Disabe DCO if proxy is set via management

2023-02-20 Thread Lev Stipakov
From: Lev Stipakov DCO doesn't support proxy and we already disable DCO is proxy is set in profile. Signed-off-by: Lev Stipakov --- v2: use dco_enabled() helper function src/openvpn/init.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/openvpn/init.c b/src/openvpn/init.c

[Openvpn-devel] [PATCH] Disabe DCO if proxy is set via management

2023-02-20 Thread Lev Stipakov
From: Lev Stipakov DCO doesn't support proxy and we already disable DCO is proxy is set in profile. Signed-off-by: Lev Stipakov --- src/openvpn/init.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/openvpn/init.c b/src/openvpn/init.c index b500d354..7c428307 100644 ---