[Openvpn-devel] [PATCH v5] Wintun - experimental support

2019-07-16 Thread Lev Stipakov
From: Lev Stipakov This adds experimental support for Wintun, an alternative to tap-windows6 on Windows. To use wintun, specify --windows-driver wintun as config option. Default value is "tap-windows6". Unlike tap-windows6, Wintun returns multiple packets, which have to be decapsulated and

Re: [Openvpn-devel] [PATCH v5] Wintun - experimental support

2019-07-16 Thread Nathan Stratton Treadway
Noticed a typo in a comment: On Tue, Jul 16, 2019 at 18:14:45 +0300, Lev Stipakov wrote: > diff --git a/src/openvpn/forward.h b/src/openvpn/forward.h [...] > +/** > + * Reads a single packet from wintun buffer. > + * It is caller's responsibility to advance buffer > + * over the end padding after

[Openvpn-devel] [PATCH applied] Re: route.c: use sitnl to implement get_default_gateway_ipv6()

2019-07-16 Thread Gert Doering
Acked-by: Arne Schwabe Acked-by: Gert Doering Passes the manual "--show-gateway " test now, and survived staring-at-the-code. Though that one turned up things elsewhere that I do not like very much (but which have already been merged) - see next mail. I said before I'm not a big fan of having

Re: [Openvpn-devel] [PATCH v5] route.c: use sitnl to implement get_default_gateway_ipv6()

2019-07-16 Thread Gert Doering
Hi, On Mon, Jul 15, 2019 at 04:46:09PM +0200, Antonio Quartulli wrote: > From: Antonio Quartulli > > get_default_gateway_ipv6() has always been implemented using > netlink, however, now that we have sitnl, we can re-use the > latter and get rid of the netlink code from route.c. > > Signed-off-b