Re: [PATCH] http: add http.version option to select http protocol version

2018-12-11 Thread Johannes Schindelin
Hi Eric, On Mon, 10 Dec 2018, Eric Sunshine wrote: > On Mon, Dec 10, 2018 at 5:50 PM Silvio Fricke wrote: > > HTTP has several protocol versions. By default, libcurl is using HTTP/2 > > today and check if the remote can use this protocol variant and fall > > back to a previous version if not. >

Re: [PATCH] http: add http.version option to select http protocol version

2018-12-10 Thread S. Fricke
Hi Eric, > On Mon, Dec 10, 2018 at 5:50 PM Silvio Fricke wrote: > > HTTP has several protocol versions. By default, libcurl is using HTTP/2 [...] > This looks very similar to [1] which is already in Junio's "next" > branch (although not yet in a released version of Git). > > [1]: > https://p

Re: [PATCH] http: add http.version option to select http protocol version

2018-12-10 Thread Eric Sunshine
On Mon, Dec 10, 2018 at 5:50 PM Silvio Fricke wrote: > HTTP has several protocol versions. By default, libcurl is using HTTP/2 > today and check if the remote can use this protocol variant and fall > back to a previous version if not. > > Under rare conditions it is needed to switch the used proto

[PATCH] http: add http.version option to select http protocol version

2018-12-10 Thread Silvio Fricke
HTTP has several protocol versions. By default, libcurl is using HTTP/2 today and check if the remote can use this protocol variant and fall back to a previous version if not. Under rare conditions it is needed to switch the used protocol version to fight again wrongly implemented authorization me