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
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
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
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