[Openvpn-devel] [PATCH] Bugfix: dangling pointer passed to pkcs11-helper

2023-05-09 Thread selva . nair
From: Selva Nair Github: Fixes OpenVPN/openvpn#323 Signed-off-by: Selva Nair --- This will fix #323 is my best guess, untested as yet.. This is a bug that needs fixing, regardless. src/openvpn/pkcs11_openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[Openvpn-devel] [PATCH] Persist-key: enable persist-key option by default.

2023-05-09 Thread Gianmarco De Gregori
This commit changes the default behavior of the OpenVPN configuration to enable the persist-key option by default. This means that all the key file content will be kept in memory throughout the lifetime of the VPN connection. Fixes: Trac #1405 Signed-off-by: Gianmarco De Gregori ---

[Openvpn-devel] [PATCH 2/3] CMake: Add complete MinGW and MSVC build

2023-05-09 Thread Frank Lichtenheld
This is based on the initial CMake patch by Arne Schwabe, but extends that to provide a complete replacement for existing MinGW build (autotools based) and MSVC build (openvpn.sln). The following features are added while switching these builds to CMake: - vcpkg support for MinGW build, allowing

[Openvpn-devel] [PATCH 0/3] Switch to CMake for Windows builds

2023-05-09 Thread Frank Lichtenheld
Posted here to make people aware of the patch set. Reviews can also be done via https://gerrit.openvpn.net/ Also available as a branch at https://github.com/flichtenheld/openvpn/tree/cmake This is based on the initial CMake patch by Arne Schwabe, but extends that to provide a complete

[Openvpn-devel] [PATCH 1/3] add basic CMake based build

2023-05-09 Thread Frank Lichtenheld
From: Arne Schwabe This helps with IDE integration among other things. This is a basic implementation for development purposes that can't replace any of the existing release builds. Change-Id: I666314a223d324ca72dbe7ba7d22f764996d3ca2 Signed-off-by: Arne Schwabe Signed-off-by: Frank