[Openvpn-devel] [PATCH] New man page - Simple corrections

2020-06-25 Thread Richard Bonhomme
Signed-off-by: Richard Bonhomme --- doc/man-sections/connection-profiles.rst | 2 +- doc/man-sections/examples.rst| 2 +- doc/man-sections/pkcs11-options.rst | 2 +- doc/man-sections/plugin-options.rst | 4 ++-- doc/man-sections/signals.rst | 2 +-

Re: [Openvpn-devel] Summary of the community meeting (24th June 2020)

2020-06-25 Thread Uipko Berghuis
> From: Samuli Seppänen [mailto:sam...@openvpn.net] > Sent: woensdag 24 juni 2020 13:10 > Talked about starting the deprecation of "--ncp-disable". The idea is that -- > ncp-disable has been mostly a debug feature and as we move forward and > want to be able to manage VPN security more from server

[Openvpn-devel] [PATCH v3] msvc: fix various level2 warnings

2020-06-25 Thread Lev Stipakov
From: Lev Stipakov Also set warnings level to level2 and enable "treat warnings as errors" flag. Signed-off-by: Lev Stipakov --- v3: - use proper format specifier for unsigned long long - add comment about cast for qsort() - remove unused parameter in delete_route_connected_v6_net()

Re: [Openvpn-devel] [PATCH v2] msvc: fix various level2 warnings

2020-06-25 Thread Lev Stipakov
Hi, > > -qsort(cipher_list, num_ciphers, sizeof(*cipher_list), cipher_name_cmp); > > +qsort((void *)cipher_list, num_ciphers, sizeof(*cipher_list), > > cipher_name_cmp); > > I find this one questionable. Qsort wants a void *, but every pointer type > should be convertible to void *,

Re: [Openvpn-devel] [PATCH v2] msvc: fix various level2 warnings

2020-06-25 Thread Arne Schwabe
>> @@ -1812,7 +1812,7 @@ do_open_tun(struct context *c) >> #ifdef _WIN32 >> /* store (hide) interactive service handle in tuntap_options */ >> c->c1.tuntap->options.msg_channel = c->options.msg_channel; >> -msg(D_ROUTE, "interactive service msg_channel=%u", (unsigned int) >>

Re: [Openvpn-devel] [PATCH v2] msvc: fix various level2 warnings

2020-06-25 Thread Gert Doering
Hi, On Thu, Jun 25, 2020 at 11:37:45AM +0300, Lev Stipakov wrote: > @@ -315,7 +315,7 @@ show_available_ciphers(void) > } > } > > -qsort(cipher_list, num_ciphers, sizeof(*cipher_list), cipher_name_cmp); > +qsort((void *)cipher_list, num_ciphers, sizeof(*cipher_list), >

[Openvpn-devel] [PATCH v2] msvc: fix various level2 warnings

2020-06-25 Thread Lev Stipakov
From: Lev Stipakov Also set warnings level to level2 and enable "treat warnings as errors" flag. Signed-off-by: Lev Stipakov --- src/compat/Debug.props | 1 - src/openvpn/block_dns.c | 3 --- src/openvpn/crypto_openssl.c | 2 +- src/openvpn/init.c | 2 +-

Re: [Openvpn-devel] [PATCH v4 3/3] Implement tls-groups option to specify eliptic curves/groups

2020-06-25 Thread Antonio Quartulli
Hi, on my GitLab CI build test, the compilation failed with the following message, while compiling against openssl-1.1: /usr/bin/ld: ssl_openssl.o: in function `tls_ctx_set_tls_groups': /builds/ordex986/openvpn/src/openvpn/ssl_openssl.c:611: undefined reference to `SSL_CTX_set1_groups'