Code

http: support proxies that require authentication
authorNelson Benitez Leon <nelsonjesus.benitez@seap.minhap.es>
Fri, 2 Mar 2012 13:55:57 +0000 (14:55 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 2 Mar 2012 22:40:14 +0000 (14:40 -0800)
commitdd6139971a18e25a5089c0f96dc80e454683ef0b
treed94e868af6234f4336c1d8f7cbace1bb423c0583
parent222433ee4b57750174875ce6b252d10c009a1fa9
http: support proxies that require authentication

When the proxy server specified by the http.proxy configuration or the
http_proxy environment variable requires authentication, git failed to
connect to the proxy, because we did not configure the cURL handle with
CURLOPT_PROXYAUTH.

When a proxy is in use, and you tell git that the proxy requires
authentication by having username in the http.proxy configuration, an
extra request needs to be made to the proxy to find out what
authentication method it supports, as this patch uses CURLAUTH_ANY to let
the library pick the most secure method supported by the proxy server.

The extra round-trip adds extra latency, but relieves the user from the
burden to configure a specific authentication method.  If it becomes
problem, a later patch could add a configuration option to specify what
method to use, but let's start simple for the time being.

Signed-off-by: Nelson Benitez Leon <nbenitezl@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c