Re: [Openvpn-devel] [PATCH v2] Add Windows DNS Leak fix using WFP ('block-outside-dns')

2015-11-17 Thread ValdikSS
Fixed all the issues you mentioned, please try v3-master. Still can't reproduce the problems you and Lev have. Set TAP adapter DNS to static addresses, works fine. Played a bit with static DNS also on internet interface, also works as expected. Tested with W10, can't run W7 yet. On 16.11.2015 09:

[Openvpn-devel] [PATCH v3-master] Add Windows DNS Leak fix using WFP ('block-outside-dns').

2015-11-17 Thread ValdikSS
This option is silently ignored on non-Windows platforms. --- doc/openvpn.8 | 11 ++- src/openvpn/Makefile.am | 2 +- src/openvpn/init.c | 22 ++ src/openvpn/openvpn.vcxproj | 4 +- src/openvpn/options.c | 12 src/openvpn/options.h | 1 + sr

Re: [Openvpn-devel] OpenVPN-GUI now on GitHub + other Windows team things

2015-11-17 Thread debbie10t
Today - I _finally_ managed to cross-compile openvpn for windows (including GUI+service) I strongly recommend, *if* you try this, use Ubuntu 14.04 64bit ! I tried and failed with other *nix. https://community.openvpn.net/openvpn/wiki/BuildingUsingGenericBuildsystem Building for Linux with Linu

[Openvpn-devel] Take me offfff

2015-11-17 Thread Emil Rudka
I don't want to receive these emails! Can you please take me off the mailing list!!!

Re: [Openvpn-devel] OpenVPN-GUI now on GitHub + other Windows team things

2015-11-17 Thread Samuli Seppänen
Hi, I personally don't build openvpn-gui as-is. Instead, it gets built during the openvpn-build build process, which builds OpenVPN and all its dependencies. We should definitely document this option in the openvpn-gui readme. Currently it's only documented in Trac. Samuli Hi, I do se

Re: [Openvpn-devel] [PATCH] Fix info.af == AF_UNSPEC case after commit 2bed089d31a12c2d0277e36a64964ebab6640f75

2015-11-17 Thread Gert Doering
Hi, On Tue, Nov 17, 2015 at 01:43:50PM +, Christian Pellegrin wrote: > I also see: "Could not determine IPv4/IPv6 protocol. Using AF_INET" in > the logs (which points in an quite explicative conditional in > socket.c). The configuration entries that might affect this and that > are present in

Re: [Openvpn-devel] OpenVPN-GUI now on GitHub + other Windows team things

2015-11-17 Thread Morris, Russell
Hi, I do see the notes about " Building OpenVPN GUI from source" - but is there a way to build this under Linux (may be easier for some)? Thanks, ... Russell -Original Message- From: Samuli Seppänen [mailto:sam...@openvpn.net] Sent: Tuesday, November 17, 2015 4:01 AM To: openvpn-devel

Re: [Openvpn-devel] [PATCH] Fix info.af == AF_UNSPEC case after commit 2bed089d31a12c2d0277e36a64964ebab6640f75

2015-11-17 Thread Christian Pellegrin
On Tue, Nov 17, 2015 at 1:03 PM, Gert Doering wrote: > Why are you seeing AF_UNSPEC there? This is actually more interesting > to me right now than debating possible avenues to fix this :-) I also see: "Could not determine IPv4/IPv6 protocol. Using AF_INET" in the logs (which points in an quite

Re: [Openvpn-devel] [PATCH] Fix info.af == AF_UNSPEC case after commit 2bed089d31a12c2d0277e36a64964ebab6640f75

2015-11-17 Thread Gert Doering
Hi, On Tue, Nov 17, 2015 at 12:32:16PM +, Christian Pellegrin wrote: > Looks better than just adding AF_UNSPEC case but I noted many other > FIXMEs about AF_UNSPEC that could be solved this way. So let me know > if there is any reason to not use the ai_family field (and just add > the AF_UNSPE

Re: [Openvpn-devel] [PATCH] Fix info.af == AF_UNSPEC case after commit 2bed089d31a12c2d0277e36a64964ebab6640f75

2015-11-17 Thread Arne Schwabe
Am 17.11.15 um 13:32 schrieb Christian Pellegrin: > Looks better than just adding AF_UNSPEC case but I noted many other > FIXMEs about AF_UNSPEC that could be solved this way. So let me know > if there is any reason to not use the ai_family field (and just add > the AF_UNSPEC case in set_mtu_discov

[Openvpn-devel] [PATCH] Fix info.af == AF_UNSPEC case after commit 2bed089d31a12c2d0277e36a64964ebab6640f75

2015-11-17 Thread Christian Pellegrin
Looks better than just adding AF_UNSPEC case but I noted many other FIXMEs about AF_UNSPEC that could be solved this way. So let me know if there is any reason to not use the ai_family field (and just add the AF_UNSPEC case in set_mtu_discovery) Thanks! From 7044e2731eeafcc7f877c7d8b77676fb5d4dbd6

[Openvpn-devel] OpenVPN-GUI now on GitHub + other Windows team things

2015-11-17 Thread Samuli Seppänen
Hi all, I migrated my private fork of openvpn-gui on GitHub to the OpenVPN organization: You can now issue pull requests and all that. An official CONTRIBUTING.rst file is still missing so we need to create one. --- I also officially announced the

[Openvpn-devel] [PATCH v4] Notify clients about server's exit/restart

2015-11-17 Thread Lev Stipakov
When server exits / restarts (gets SIGUSR1, SIGTERM, SIGHUP, SIGINT) and explicit-exit-notify is set, server sends RESTART control channel command to all clients and reschedules received signal in 2 secs. When client receives RESTART command, it either reconnects to the same server or advances to

[Openvpn-devel] (no subject)

2015-11-17 Thread Christopher Ghadanian
Vpn

[Openvpn-devel] [PATCH] Handle ctrl-C and ctrl-break events on Windows

2015-11-17 Thread Selva Nair
v2 changes - cleaner, hopefully easier to get a code review :) - handles both console mode and service mode -- >8 -- Handle ctrl-C or ctrl-Break sent to the console as a SIGTERM. Depending on the console mode, windows delivers ctrl-C as a keyboard input or as a signal. We handle both cases. This