Re: [Openvpn-devel] [PATCH] add option --management-query-proxy

2012-07-19 Thread David Sommerseth
On 11/07/12 14:16, Heiko Hund wrote: > Make openvpn query for proxy information through the > management interface. This allows GUIs to provide (automatically > detected) proxy information on a per connection basis. > > This new option supersedes the undocumented --http-proxy-fallback > option and

Re: [Openvpn-devel] [PATCH] remove unused show_connection_list debug function

2012-07-19 Thread David Sommerseth
On 11/07/12 15:38, Heiko Hund wrote: > Signed-off-by: Heiko Hund > --- > src/openvpn/init.c | 25 - > 1 file changed, 25 deletions(-) > ACK. Applied to master. commit af417baa93f4ebcc545486cbd9635fbc602ba148 Author: Heiko Hund List-Post: openvpn-devel@lists.sourcefo

Re: [Openvpn-devel] [PATCHv2 1/2] make non-blocking connect work on Windows

2012-07-19 Thread David Sommerseth
On 17/07/12 18:19, Heiko Hund wrote: > Instead of EINPROGRESS WinSock2 returns WSAEWOULDBLOCK if a non-blocking > connect(2) cannot be completed immediately. > > Signed-off-by: Heiko Hund > --- > src/openvpn/socket.c |8 +++- > 1 files changed, 7 insertions(+), 1 deletions(-) > Applied

Re: [Openvpn-devel] [PATCHv2 2/2] don't treat socket related errors special anymore

2012-07-19 Thread David Sommerseth
On 17/07/12 18:25, Heiko Hund wrote: > WSAGetLastError() is just a wrapper for GetLastError(). So, there's > no need to differentiate between socket related and other errors. > > This patch removes all special handling of socket errors in favor > of simplifying the codebase somewhat. > > Signed-o