Re: https_proxy and libcurl

2013-02-27 Thread Phil Hord
On Fri, Feb 22, 2013 at 4:55 PM, Junio C Hamano wrote: > Phil Hord writes: > >> I have been unable to clone via http proxy because of a wrongly >> configured proxy setup in my lab. >> >> I had this env: >> >> http_proxy=http://proxy.myco.com >> https_proxy=https://proxy.myco.com >> >> The

Re: https_proxy and libcurl

2013-02-22 Thread Daniel Stenberg
On Fri, 22 Feb 2013, Junio C Hamano wrote: http_proxy=http://proxy.myco.com https_proxy=https://proxy.myco.com The problem is that libcurl ignores the protocol part of the proxy url, and it defaults to port 1080. wget honors the protocol specifier, but it defaults to port 80 if none is

Re: https_proxy and libcurl

2013-02-22 Thread Junio C Hamano
Phil Hord writes: > I have been unable to clone via http proxy because of a wrongly > configured proxy setup in my lab. > > I had this env: > > http_proxy=http://proxy.myco.com > https_proxy=https://proxy.myco.com > > The problem is that libcurl ignores the protocol part of the proxy > ur