[Openvpn-devel] [Fwd: Re: [OpenVPN Community] #97: OpenVPN produces DCHP NAK bomb on Win 7 64bit]

2012-07-13 Thread Jan Just Keijser
did one of the tap-win32 developers see this: Seems to be a bug in the TAP driver. It's happening after you try to refresh the DHCP lease 3 times (after resume from hibernation, Windows tries to acquire a DHCP lease too). I think the reason for this is a programming error in dhcp.c in function Pr

Re: [Openvpn-devel] Openvpn-2.3_alpha2 and easy-rsa-2.2.0_master packages and packaging files published

2012-07-13 Thread Alon Bar-Lev
Hello Samuli, Why didn't you use rpmbuild -tb .tar.gz? And if you have changes in spec file you should probably add this with proper conditionals to the spec file within the appropriate package. There should be no external resource maintained. The debian packaging should also be integrated withi

Re: [Openvpn-devel] [PATCH] make non-blocking connect work on Windows

2012-07-13 Thread Alon Bar-Lev
Hello, In my projects I always compare to the two values EWOULDBLOCK and EINPROGRESS and it works without much conditionals. So simply do: --- if (status == EINPROGRESS || status == EWOULDBLOCK) --- Alon. On Fri, Jul 13, 2012 at 12:55 PM, Heiko Hund wrote: > > Instead of EINPROGRESS WinSock2

Re: [Openvpn-devel] [OpenVPN Community] #97: OpenVPN produces DCHP NAK bomb on Win 7 64bit

2012-07-13 Thread Gert Doering
Hi, forwarding something from a Trac ticket so "someone with time at his hands" (and understanding of the code) could look into this... gert - Forwarded message from OpenVPN Trac instance - #97: OpenVPN produces DCHP NAK bomb on Win 7 64bit

[Openvpn-devel] Openvpn-2.3_alpha2 and easy-rsa-2.2.0_master packages and packaging files published

2012-07-13 Thread Samuli Seppänen
Hi all, I've just finished packaging openvpn-2.3_alpha2 for Debian/Ubuntu and Fedora/EL. As the packaging files required significant changes on both Debian and RPM front, I've put them here for others to use/improve: The packaging highlights for the

[Openvpn-devel] [PATCH] make non-blocking connect work on Windows

2012-07-13 Thread Heiko Hund
Instead of EINPROGRESS WinSock2 returns WSAEWOULDBLOCK if a non-blocking connect(2) cannot be completed immediately. Signed-off-by: Heiko Hund --- configure.ac |2 ++ src/openvpn/socket.c |2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configur