From: Sergey Ryazanov <ryazanov.s.a@gmail.com>
To: git@vger.kernel.org
Subject: [PATCH] http: honnor empty http.proxy option to bypass proxy
Date: Mon, 10 Apr 2017 18:15:56 +0300 [thread overview]
Message-ID: <20170410151556.10054-1-ryazanov.s.a@gmail.com> (raw)
Curl distinguish between empty proxy address and NULL proxy address. In
the first case it completly disable proxy usage, but if proxy address
option is NULL then curl attempt to determine proxy address from
http_proxy environment variable.
According to documentation, if http.proxy configured to empty string
then git should bypass proxy and connects to the server directly:
export http_proxy=http://network-proxy/
cd ~/foobar-project
git config remote.origin.proxy ""
git fetch
Previously, proxy host was configured by one line:
curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
Commit 372370f (http: use credential API to handle proxy auth...) parses
proxy option, extracts proxy host address and additionaly updates curl
configuration:
credential_from_url(&proxy_auth, curl_http_proxy);
curl_easy_setopt(result, CURLOPT_PROXY, proxy_auth.host);
But if proxy option is empty then proxy host field become NULL this
force curl to fallback to proxy configuration detection from
environment. This caused empty http.proxy option not working any more.
Avoid setting NULL CURLOPT_PROXY from proxy_auth.host to fix this issue.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
---
http.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/http.c b/http.c
index 96d84bb..bf0e709 100644
--- a/http.c
+++ b/http.c
@@ -861,7 +861,12 @@ static CURL *get_curl_handle(void)
strbuf_release(&url);
}
- curl_easy_setopt(result, CURLOPT_PROXY, proxy_auth.host);
+ /*
+ * Avoid setting CURLOPT_PROXY to NULL if empty http.proxy
+ * option configured.
+ */
+ if (proxy_auth.host)
+ curl_easy_setopt(result, CURLOPT_PROXY, proxy_auth.host);
#if LIBCURL_VERSION_NUM >= 0x071304
var_override(&curl_no_proxy, getenv("NO_PROXY"));
var_override(&curl_no_proxy, getenv("no_proxy"));
--
2.10.2
next reply other threads:[~2017-04-10 15:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-10 15:15 Sergey Ryazanov [this message]
2017-04-10 16:33 ` [PATCH] http: honnor empty http.proxy option to bypass proxy Jeff King
2017-04-11 8:24 ` Sergey Ryazanov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170410151556.10054-1-ryazanov.s.a@gmail.com \
--to=ryazanov.s.a@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).