Re: [Openvpn-devel] [PATCH] Fixes a bug in management_callback_send_cc_message, should be strlen instead of sizeof

2020-08-19 Thread Arne Schwabe
Am 20.08.20 um 03:42 schrieb Eric Thorpe: > Signed-off-by: Eric Thorpe > --- > src/openvpn/init.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/openvpn/init.c b/src/openvpn/init.c > index dfa045b0..a785934a 100644 > --- a/src/openvpn/init.c > +++ b/src/openvpn/init

[Openvpn-devel] [PATCH] Fixes a bug in management_callback_send_cc_message, should be strlen instead of sizeof

2020-08-19 Thread Eric Thorpe
Signed-off-by: Eric Thorpe --- src/openvpn/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/init.c b/src/openvpn/init.c index dfa045b0..a785934a 100644 --- a/src/openvpn/init.c +++ b/src/openvpn/init.c @@ -312,7 +312,7 @@ management_callback_send_cc_message(v

[Openvpn-devel] Summary of the community meeting (19th Aug 2020)

2020-08-19 Thread Samuli Seppänen
Hi, Here's the summary of the IRC meeting. --- COMMUNITY MEETING Place: #openvpn-meeting on irc.freenode.net Date: Thu 19th August 2020 Time: 11:30 CEST (9:30 UTC) Planned meeting topics for this meeting were here: Your local mee

Re: [Openvpn-devel] [PATCH] Skip existing interfaces on opening the first available utun on macOS

2020-08-19 Thread Arne Schwabe
Am 05.08.20 um 11:02 schrieb Lev Stipakov: > Hi, > > +ASSERT(snprintf(ifname, sizeof(ifname), "utun%d", utunnum)); > > Not sure about ASSERT here, because according to > https://linux.die.net/man/3/snprintf > >> If an output error is encountered, a negative value is returned. > > w

[Openvpn-devel] [PATCH] tun.c: enable using wintun driver under SYSTEM

2020-08-19 Thread Lev Stipakov
From: Lev Stipakov Commit 6d19775a468 has removed SYSTEM elevation hack, but introduced regression - inability to use wintun without interactive service. Proceed with ring buffers registration even if iservice is unavailable and display relevant error message. Trac #1318 Signed-off-by: Lev St