[Openvpn-devel] [PATCH] Correct error message for --tls-crypt-v2-genkey client

2018-10-30 Thread tincanteksup
Correct error message for --tls-crypt-v2-genkey client Signed-off-by: Richard Bonhomme --- diff --git a/src/openvpn/init.c b/src/openvpn/init.c index 882337b2..39e8ca5f 100644 --- a/src/openvpn/init.c +++ b/src/openvpn/init.c @@ -1087,7 +1087,7 @@ do_genkey(const struct options *options)

[Openvpn-devel] [PATCH v4] Improve "recursive routing" warning message

2018-10-30 Thread Lev Stipakov
From: Lev Stipakov This patch provides additional information, such as source address/port and destination address/port, to a "recursive routing" warning message. It also mentiones possible workaround. Trac #843 Signed-off-by: Lev Stipakov --- v4: - remove unneeded format specifier for const

Re: [Openvpn-devel] [PATCH 1/5] Set output name to libopenvpnmsica.dll in MSVC builds too

2018-10-30 Thread Samuli Seppänen
Hi, I build-tested with all of these patches using the openvpn-build VM in Vagrant[1]. After the build libopenvpnmsica.dll and tapctl.exe show up under tmp/installer/. So the build part is definitely working correctly. How would I test that both of the above are operating as intended? Also, coul

Re: [Openvpn-devel] [PATCH v5] Implement block-ipv6

2018-10-30 Thread Thomas Schäfer
Am 30.10.18 um 11:53 schrieb Arne Schwabe: That should answer your questions, doesn't it? Thanks for clarification. It doesn't harm IPv6 transport. But it may (if intended ) block IPv6 payload. Thomas ___ Openvpn-devel mailing list Openvpn-devel@li

Re: [Openvpn-devel] [PATCH v5] Implement block-ipv6

2018-10-30 Thread Arne Schwabe
Am 30.10.18 um 11:22 schrieb Arne Schwabe: > Am 30.10.18 um 11:07 schrieb Thomas Schäfer: >> Am 29.10.18 um 23:09 schrieb Gert Doering: >>> Hi, >>> >>> On Mon, Oct 29, 2018 at 09:06:13PM +, Kristian McColm wrote: Will this feature break VPNs that use NAT64 to connect to IPv4-only Open

[Openvpn-devel] [PATCH v5] Implement block-ipv6

2018-10-30 Thread Arne Schwabe
Am 30.10.18 um 11:07 schrieb Thomas Schäfer: > Am 29.10.18 um 23:09 schrieb Gert Doering: >> Hi, >> >> On Mon, Oct 29, 2018 at 09:06:13PM +, Kristian McColm wrote: >>> Will this feature break VPNs that use NAT64 to connect to IPv4-only >>> OpenVPN servers? >> >> No. >> >> This is an opt-in feat

Re: [Openvpn-devel] [PATCH v5] Implement block-ipv6

2018-10-30 Thread Thomas Schäfer
Am 29.10.18 um 23:09 schrieb Gert Doering: Hi, On Mon, Oct 29, 2018 at 09:06:13PM +, Kristian McColm wrote: Will this feature break VPNs that use NAT64 to connect to IPv4-only OpenVPN servers? No. This is an opt-in feature which you can enable by pushing "block-ipv6" from the server to

[Openvpn-devel] [PATCH v2] Fix various compiler warnings

2018-10-30 Thread Lev Stipakov
From: Lev Stipakov This patch fixes "unused variable/unreferenced format parameter" warnings in different places, kudos to Visual Studio compiler for discoveing some of those. This also also removes unneeded uninit_management_callback_multi() wrapper. Signed-off-by: Lev Stipakov --- v2: remove