[Openvpn-devel] russian language fixes

2015-10-06 Thread Anatoly Pugachev
Hello! Can you please apply patch from trac ticket 446. Thanks. https://community.openvpn.net/openvpn/ticket/446

Re: [Openvpn-devel] russian language fixes

2015-10-06 Thread ValdikSS
I posted the similar patch a year ago directly to openvpn-gui sourceforge page and it seems to be gone. So please apply this. On 06.10.2015 11:45, Anatoly Pugachev wrote: > > Hello! > > Can you please apply patch from trac ticket 446. Thanks. > > https://community.openvpn.net/openvpn/ticket/446 >

[Openvpn-devel] [PATCH applied] Re: get_default_gateway_ipv6(): Win32 implementation using GetBestRoute2()

2015-10-06 Thread Gert Doering
Lazy-ACK rules have been applied ("nobody screamed for two weeks", the code is for a single platform, does not involve buffer management or crypto, and is trivial enough). The "get default gateway" part has been tested by Samuli (mingw), Heiko (cygwin) and Lev (MSVC), the "... and install proper

[Openvpn-devel] [PATCH applied] Re: Add custom check for inet_pton()/inet_ntop() on MinGW/WIN32

2015-10-06 Thread Gert Doering
Lazy-ACK rules have been applied ("nobody screamed for two weeks", and it got tested on various mingw versions plus cygwin). Patch has been applied to the master branch. commit f96baabc6cf10edddedda1819a27a6927f274d8e Author: Gert Doering List-Post: openvpn-devel@lists.sourceforge.net Date: Tue

[Openvpn-devel] [PATCH applied] Re: This fixes MSVS 2013 compilation.

2015-10-06 Thread Gert Doering
ACK. Your patch has been applied to the master branch. commit 123092a7a95f13f0509d2dc52ec049f91a02686d Author: Lev Stipakov List-Post: openvpn-devel@lists.sourceforge.net Date: Fri Oct 2 14:46:41 2015 +0300 This fixes MSVS 2013 compilation. Acked-by: Gert Doering Message-Id: <

[Openvpn-devel] [PATCH v2] Fix MSVS 2013 compilation

2015-10-06 Thread Lev Stipakov
v2: * Bump API level to Vista to for get_default_gateway_ipv6() implementation * Define HAVE_INET_NTOP/PTON for Vista since it has own implementation of inet_ntop/pton v1: * Add comp/compstub to project files * Bump tools version to 12 * define __attribute__ Signed-off-by: Lev Stipakov --- con

[Openvpn-devel] [PATCH applied] Re: polarssl: add easy logging for PolarSSL errors

2015-10-06 Thread Gert Doering
ACK. This one is nicely trivial, as it just adds easily verifiable stuff without *changing* anything. Your patch has been applied to the master branch. commit 6ef5df14917500f107fd843a6dba61355edaeea0 Author: Steffan Karger List-Post: openvpn-devel@lists.sourceforge.net Date: Sun Mar 8 11:20:04

Re: [Openvpn-devel] [PATCH 2/2] polarssl: Improve PolarSSL logging

2015-10-06 Thread Gert Doering
Hi, On Sun, Mar 08, 2015 at 11:20:05AM +0100, Steffan Karger wrote: > Use the new polar_log_err() and polar_ok() functions introduced in the > previous commit to provide more log/debug output for polarssl errors. For the record on the list - this one looks good, but got left in the sun for so lon

[Openvpn-devel] [PATCH] Continuation of MSVS fixes

2015-10-06 Thread Lev Stipakov
* Upgrade API level to Vista to implement get_default_gateway_ipv6 * Define HAVE_INET_NTOP/PTON since Vista has its own implementation of those Signed-off-by: Lev Stipakov --- config-msvc.h | 6 ++ msvc-env.bat | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/config-m

[Openvpn-devel] [PATCH applied] Re: Continuation of MSVS fixes

2015-10-06 Thread Gert Doering
ACK. The need for this change was expected (because GetIpRoute2() is not part of the "XP" API but needs VISTA), and thanks for testing that the *rest* of the new stuff actually works on a MSVC build :-) Your patch has been applied to the master branch. commit b0fe94115fc4a75094d15452b7b89a0c0849

Re: [Openvpn-devel] Help with build-testing a patched OpenVPN tree with Cygwin and Visual Studio?

2015-10-06 Thread Gert Doering
Hi, jftr... On Fri, Sep 25, 2015 at 03:01:01PM +0300, Samuli Seppänen wrote: > We'd need some help build-testing a patched[*] OpenVPN version with > Cygwin and Visual Studio: > > > > This tree already builds fine on mingw_w64 whi

[Openvpn-devel] [PATCH] polarssl: Improve PolarSSL logging

2015-10-06 Thread Steffan Karger
Use the new polar_log_err() and polar_ok() functions introduced in the previous commit to provide more log/debug output for polarssl errors. Signed-off-by: Steffan Karger --- src/openvpn/crypto_polarssl.c | 35 --- src/openvpn/ssl_polarssl.c| 89 +-

[Openvpn-devel] [PATCH] openssl: be less verbose about cipher translation errors

2015-10-06 Thread Steffan Karger
Translation errors are usually not a real problem, since we don't maintain the complete list of ciphers OpenSSL supports. So, be less verbose if we can not find a translation. Also, add 'translations' for commonly used negated cipher suites to suppress messages about those completely. Signed-off