<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/curl.git/src, branch bagder/test493-https</title>
<subtitle>github.com: bagder/curl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/'/>
<entry>
<title>tool_operate: don't discard failed parallel transfer result</title>
<updated>2021-04-20T05:51:56+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2021-04-20T05:51:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=711879ca7cbda86c391c2b4dfb4b39847f773dc5'/>
<id>711879ca7cbda86c391c2b4dfb4b39847f773dc5</id>
<content type='text'>
- Save a parallel transfer's result code only when it fails and the
  transfer is not being retried.

Prior to this change the result code was always set which meant that a
failed result could be erroneously discarded if a different transfer
later had a successful result (CURLE_OK).

Before:

&gt; curl --fail -Z https://httpbin.org/status/404 https://httpbin.org/delay/10
&gt; echo %ERRORLEVEL%
0

After:

&gt; curl --fail -Z https://httpbin.org/status/404 https://httpbin.org/delay/10
&gt; echo %ERRORLEVEL%
22

Closes #xxxx
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Save a parallel transfer's result code only when it fails and the
  transfer is not being retried.

Prior to this change the result code was always set which meant that a
failed result could be erroneously discarded if a different transfer
later had a successful result (CURLE_OK).

Before:

&gt; curl --fail -Z https://httpbin.org/status/404 https://httpbin.org/delay/10
&gt; echo %ERRORLEVEL%
0

After:

&gt; curl --fail -Z https://httpbin.org/status/404 https://httpbin.org/delay/10
&gt; echo %ERRORLEVEL%
22

Closes #xxxx
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: ignore options asking for SSLv2 or SSLv3</title>
<updated>2021-04-19T06:14:05+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-03-22T10:55:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=cf65d4237e097ace65e17580407ce56487823a47'/>
<id>cf65d4237e097ace65e17580407ce56487823a47</id>
<content type='text'>
Instead output a warning about it and continue with the defaults.

These SSL versions are typically not supported by the TLS libraries since a
long time back already since they are inherently insecure and broken. Asking
for them to be used will just cause an error to be returned slightly later.

In the unlikely event that a user's TLS library actually still supports these
protocol versions, this change might make the request a little less insecure.

Closes #6772
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead output a warning about it and continue with the defaults.

These SSL versions are typically not supported by the TLS libraries since a
long time back already since they are inherently insecure and broken. Asking
for them to be used will just cause an error to be returned slightly later.

In the unlikely event that a user's TLS library actually still supports these
protocol versions, this change might make the request a little less insecure.

Closes #6772
</pre>
</div>
</content>
</entry>
<entry>
<title>tool_writeout: fix the HTTP_CODE json output</title>
<updated>2021-04-17T09:03:30+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2021-04-16T22:34:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=2f78be51ebe8578bce5469924cedf7ac8bc06a85'/>
<id>2f78be51ebe8578bce5469924cedf7ac8bc06a85</id>
<content type='text'>
Update test 970 accordingly.

Reported-by: Michal Rus
Fixes #6905
Closes #6906
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update test 970 accordingly.

Reported-by: Michal Rus
Fixes #6905
Closes #6906
</pre>
</div>
</content>
</entry>
<entry>
<title>tool_getparam: replace (in-place) '%20' by '+' according to RFC1866</title>
<updated>2021-04-15T11:45:12+00:00</updated>
<author>
<name>Victor Vieux</name>
<email>victorvieux@gmail.com</email>
</author>
<published>2021-04-15T04:45:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=0d7c55bd57ffd5fedb5862e123673d35704b58ac'/>
<id>0d7c55bd57ffd5fedb5862e123673d35704b58ac</id>
<content type='text'>
Signed-off-by: Victor Vieux &lt;victorvieux@gmail.com&gt;

Closes #6895
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Victor Vieux &lt;victorvieux@gmail.com&gt;

Closes #6895
</pre>
</div>
</content>
</entry>
<entry>
<title>misc: update copyright year ranges to match latest updates</title>
<updated>2021-04-13T12:32:30+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-04-10T09:45:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=95d525a9e176cab2600a87e9e0aaa15a87608647'/>
<id>95d525a9e176cab2600a87e9e0aaa15a87608647</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>src/tool_vms.c: remove duplicated word in comment</title>
<updated>2021-04-10T09:43:18+00:00</updated>
<author>
<name>Jürgen Gmach</name>
<email>juergen.gmach@googlemail.com</email>
</author>
<published>2021-04-10T08:15:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=c6e213e5849537cdb9f1c8f94b31335c3b49778d'/>
<id>c6e213e5849537cdb9f1c8f94b31335c3b49778d</id>
<content type='text'>
Closes #6881
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6881
</pre>
</div>
</content>
</entry>
<entry>
<title>tool_progress: Fix progress meter in parallel mode</title>
<updated>2021-04-06T03:43:26+00:00</updated>
<author>
<name>Cherish98</name>
<email>66007047+Cherish98@users.noreply.github.com</email>
</author>
<published>2021-04-02T10:57:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=4b4401e26acd3a181706e890402ffb371899df2b'/>
<id>4b4401e26acd3a181706e890402ffb371899df2b</id>
<content type='text'>
Make sure the total amount of DL/UL bytes are counted before the
transfer finalizes. Otherwise if a transfer finishes too quick, its
total numbers are not added, and results in a DL%/UL% that goes above
100%.

Detail:

progress_meter() is called periodically, and it may not catch a
transfer's total bytes if the value was unknown during the last call,
and the transfer is finished and deleted (i.e., lost) during the next
call.

Closes https://github.com/curl/curl/pull/6840
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make sure the total amount of DL/UL bytes are counted before the
transfer finalizes. Otherwise if a transfer finishes too quick, its
total numbers are not added, and results in a DL%/UL% that goes above
100%.

Detail:

progress_meter() is called periodically, and it may not catch a
transfer's total bytes if the value was unknown during the last call,
and the transfer is finished and deleted (i.e., lost) during the next
call.

Closes https://github.com/curl/curl/pull/6840
</pre>
</div>
</content>
</entry>
<entry>
<title>copyright: update copyright year ranges to 2021</title>
<updated>2021-03-27T22:00:14+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-03-27T11:52:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=85e6975643fe52d6c4152969e2353f3ab8ea4554'/>
<id>85e6975643fe52d6c4152969e2353f3ab8ea4554</id>
<content type='text'>
Reviewed-by: Emil Engler
Closes #6802
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Emil Engler
Closes #6802
</pre>
</div>
</content>
</entry>
<entry>
<title>tool_operate: bail if set CURLOPT_HTTP09_ALLOWED returns error</title>
<updated>2021-03-11T21:45:20+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-03-11T14:37:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=985c184d5b5f7bd442af462cfde5f7f597122b13'/>
<id>985c184d5b5f7bd442af462cfde5f7f597122b13</id>
<content type='text'>
Closes #6727
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6727
</pre>
</div>
</content>
</entry>
<entry>
<title>config: remove CURL_SIZEOF_CURL_OFF_T use only SIZEOF_CURL_OFF_T</title>
<updated>2021-03-11T09:11:56+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-03-08T11:30:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=78f642ffab9a703bb23e4d9ddb1abe582f14eb62'/>
<id>78f642ffab9a703bb23e4d9ddb1abe582f14eb62</id>
<content type='text'>
Make the code consistently use a single name for the size of the
"curl_off_t" type.

Closes #6702
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make the code consistently use a single name for the size of the
"curl_off_t" type.

Closes #6702
</pre>
</div>
</content>
</entry>
</feed>
