<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/tests/FILEFORMAT, branch master</title>
<subtitle>cURL mirror with patches applied
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/'/>
<entry>
<title>tests/FILEFORMAT: converted to markdown and extended</title>
<updated>2020-04-19T18:43:50+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-04-19T16:10:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=7e53974603079a9522acdb10f3b4de499ffa6e4d'/>
<id>7e53974603079a9522acdb10f3b4de499ffa6e4d</id>
<content type='text'>
Closes #5261
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5261
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: support hex encoded data and mqtt server</title>
<updated>2020-04-14T11:04:10+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-04-14T09:19:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=675f5fb66fd30ff2ea0bfdf455430fe1f76e42a6'/>
<id>675f5fb66fd30ff2ea0bfdf455430fe1f76e42a6</id>
<content type='text'>
The mqtt server is started using a "random" port.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The mqtt server is started using a "random" port.
</pre>
</div>
</content>
</entry>
<entry>
<title>cleanup: fix some text/comment typos</title>
<updated>2020-03-12T13:28:17+00:00</updated>
<author>
<name>Viktor Szakats</name>
<email>commit@vsz.me</email>
</author>
<published>2020-03-12T12:15:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=af07875c0d0236a79c1639b01af60568ca95b9db'/>
<id>af07875c0d0236a79c1639b01af60568ca95b9db</id>
<content type='text'>
Closes #5087
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5087
</pre>
</div>
</content>
</entry>
<entry>
<title>libssh: Fix matching user-specified MD5 hex key</title>
<updated>2020-03-07T08:06:11+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2020-02-23T23:37:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=09aa807240b9dcde78a919ff712316a1daf0655e'/>
<id>09aa807240b9dcde78a919ff712316a1daf0655e</id>
<content type='text'>
Prior to this change a match would never be successful because it
was mistakenly coded to compare binary data from libssh to a
user-specified hex string (ie CURLOPT_SSH_HOST_PUBLIC_KEY_MD5).

Reported-by: fds242@users.noreply.github.com

Fixes https://github.com/curl/curl/issues/4971
Closes https://github.com/curl/curl/pull/4974
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prior to this change a match would never be successful because it
was mistakenly coded to compare binary data from libssh to a
user-specified hex string (ie CURLOPT_SSH_HOST_PUBLIC_KEY_MD5).

Reported-by: fds242@users.noreply.github.com

Fixes https://github.com/curl/curl/issues/4971
Closes https://github.com/curl/curl/pull/4974
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: disable SMTP UTF-8 tests on Windows</title>
<updated>2020-03-02T07:29:11+00:00</updated>
<author>
<name>Steve Holme</name>
<email>steve_holme@hotmail.com</email>
</author>
<published>2020-02-27T17:33:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=df207d2dd93b9e73c0550f62d8034bacecffbd20'/>
<id>df207d2dd93b9e73c0550f62d8034bacecffbd20</id>
<content type='text'>
Fixes #4988
Closes #4992
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #4988
Closes #4992
</pre>
</div>
</content>
</entry>
<entry>
<title>http: added 417 response treatment</title>
<updated>2020-02-26T21:48:14+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-02-26T21:48:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=6375b205a9d3ebe9583871178db258e6a1f4dfff'/>
<id>6375b205a9d3ebe9583871178db258e6a1f4dfff</id>
<content type='text'>
When doing a request with a body + Expect: 100-continue and the server
responds with a 417, the same request will be retried immediately
without the Expect: header.

Added test 357 to verify.

Also added a control instruction to tell the sws test server to not read
the request body if Expect: is present, which the new test 357 uses.

Reported-by: bramus on github
Fixes #4949
Closes #4964
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When doing a request with a body + Expect: 100-continue and the server
responds with a 417, the same request will be retried immediately
without the Expect: header.

Added test 357 to verify.

Also added a control instruction to tell the sws test server to not read
the request body if Expect: is present, which the new test 357 uses.

Reported-by: bramus on github
Fixes #4949
Closes #4964
</pre>
</div>
</content>
</entry>
<entry>
<title>pipelining: removed</title>
<updated>2019-04-06T20:49:50+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2019-04-05T14:38:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=2f44e94efb3df8e50bb2ddbc4ec6b569a6424517'/>
<id>2f44e94efb3df8e50bb2ddbc4ec6b569a6424517</id>
<content type='text'>
As previously planned and documented in DEPRECATE.md, all pipelining
code is removed.

Closes #3651
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As previously planned and documented in DEPRECATE.md, all pipelining
code is removed.

Closes #3651
</pre>
</div>
</content>
</entry>
<entry>
<title>alt-svc: the libcurl bits</title>
<updated>2019-03-03T10:17:52+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2019-03-03T10:17:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=e1be8254534898fccafc5d6cd04f6235f283cfbd'/>
<id>e1be8254534898fccafc5d6cd04f6235f283cfbd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>url: a short host name + port is not a scheme</title>
<updated>2018-11-06T18:11:58+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-11-04T22:30:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=9df8dc101ba03807a3257ba0922fe4dd03c81ed3'/>
<id>9df8dc101ba03807a3257ba0922fe4dd03c81ed3</id>
<content type='text'>
The function identifying a leading "scheme" part of the URL considered a
few letters ending with a colon to be a scheme, making something like
"short:80" to become an unknown scheme instead of a short host name and
a port number.

Extended test 1560 to verify.

Also fixed test203 to use file_pwd to make it get the correct path on
windows. Removed test 2070 since it was a duplicate of 203.

Assisted-by: Marcel Raad
Reported-by: Hagai Auro
Fixes #3220
Fixes #3233
Closes #3223
Closes #3235
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The function identifying a leading "scheme" part of the URL considered a
few letters ending with a colon to be a scheme, making something like
"short:80" to become an unknown scheme instead of a short host name and
a port number.

Extended test 1560 to verify.

Also fixed test203 to use file_pwd to make it get the correct path on
windows. Removed test 2070 since it was a duplicate of 203.

Assisted-by: Marcel Raad
Reported-by: Hagai Auro
Fixes #3220
Fixes #3233
Closes #3223
Closes #3235
</pre>
</div>
</content>
</entry>
<entry>
<title>axtls: removed</title>
<updated>2018-11-01T09:29:53+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-10-30T09:00:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=302d125b42ed39580fad65ad87fa376ddeaba305'/>
<id>302d125b42ed39580fad65ad87fa376ddeaba305</id>
<content type='text'>
As has been outlined in the DEPRECATE.md document, the axTLS code has
been disabled for 6 months and is hereby removed.

Use a better supported TLS library!

Assisted-by: Daniel Gustafsson
Closes #3194
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As has been outlined in the DEPRECATE.md document, the axTLS code has
been disabled for 6 months and is hereby removed.

Use a better supported TLS library!

Assisted-by: Daniel Gustafsson
Closes #3194
</pre>
</div>
</content>
</entry>
</feed>
