<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl, 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>Add gemini protocol support</title>
<updated>2020-06-17T00:30:15+00:00</updated>
<author>
<name>Ben Burwell</name>
<email>ben@benburwell.com</email>
</author>
<published>2020-05-21T19:00:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=d8c87b67316fa87fdb9bd5c8b6b1d3291d9ebc9f'/>
<id>d8c87b67316fa87fdb9bd5c8b6b1d3291d9ebc9f</id>
<content type='text'>
The gemini protocol's "speculative specification" is documented  at the
following URLs:

  https://gemini.circumlunar.space/docs/spec-spec.txt
  gopher://gemini.circumlunar.space/1/docs/spec-spec.txt
  gemini://gemini.circumlunar.space/docs/spec-spec.txt

This patch introduces preliminary support for version 0.11.0 of the
specification, as of March 1st 2020.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The gemini protocol's "speculative specification" is documented  at the
following URLs:

  https://gemini.circumlunar.space/docs/spec-spec.txt
  gopher://gemini.circumlunar.space/1/docs/spec-spec.txt
  gemini://gemini.circumlunar.space/docs/spec-spec.txt

This patch introduces preliminary support for version 0.11.0 of the
specification, as of March 1st 2020.
</pre>
</div>
</content>
</entry>
<entry>
<title>manpage: add three missing environment variables</title>
<updated>2020-06-16T22:03:07+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-16T15:36:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=477a4e31d724a9e14f92092c3d2ec8e486b99403'/>
<id>477a4e31d724a9e14f92092c3d2ec8e486b99403</id>
<content type='text'>
CURL_SSL_BACKEND, QLOGDIR and SSLKEYLOGFILE

Closes #5571
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CURL_SSL_BACKEND, QLOGDIR and SSLKEYLOGFILE

Closes #5571
</pre>
</div>
</content>
</entry>
<entry>
<title>RELEASE-NOTES: synced</title>
<updated>2020-06-16T07:30:35+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-16T07:30:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=83503c7240fca27477906017aff0e4a69659c615'/>
<id>83503c7240fca27477906017aff0e4a69659c615</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>configure: for wolfSSL, check for the DES func needed for NTLM</title>
<updated>2020-06-16T07:06:53+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-11T21:36:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=774eff9fcdfd2758e847fada840385f69e380773'/>
<id>774eff9fcdfd2758e847fada840385f69e380773</id>
<content type='text'>
Also adds pkg-config support for the wolfSSL detection.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also adds pkg-config support for the wolfSSL detection.
</pre>
</div>
</content>
</entry>
<entry>
<title>ntlm: enable NTLM support with wolfSSL</title>
<updated>2020-06-16T07:06:19+00:00</updated>
<author>
<name>Ruurd Beerstra</name>
<email>ruurd.beerstra@infor.com</email>
</author>
<published>2020-06-11T15:14:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=d80d419d3e3bf0e5f0dea160df5609c57cb3c5df'/>
<id>d80d419d3e3bf0e5f0dea160df5609c57cb3c5df</id>
<content type='text'>
When wolfSSL is built with its OpenSSL API layer, it fetures the same DES*
functions that OpenSSL has. This change take advantage of that.

Co-authored-by: Daniel Stenberg
Closes #5556
Fixes #5548
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When wolfSSL is built with its OpenSSL API layer, it fetures the same DES*
functions that OpenSSL has. This change take advantage of that.

Co-authored-by: Daniel Stenberg
Closes #5556
Fixes #5548
</pre>
</div>
</content>
</entry>
<entry>
<title>http: move header storage to Curl_easy from connectdata</title>
<updated>2020-06-15T20:56:25+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-15T09:28:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=e15e51384a423be31318b3c9c7d612a1aae661fd'/>
<id>e15e51384a423be31318b3c9c7d612a1aae661fd</id>
<content type='text'>
Since the connection can be used by many independent requests (using
HTTP/2 or HTTP/3), things like user-agent and other transfer-specific
data MUST NOT be kept connection oriented as it could lead to requests
getting the wrong string for their requests. This struct data was
lingering like this due to old HTTP1 legacy thinking where it didn't
mattered..

Fixes #5566
Closes #5567
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since the connection can be used by many independent requests (using
HTTP/2 or HTTP/3), things like user-agent and other transfer-specific
data MUST NOT be kept connection oriented as it could lead to requests
getting the wrong string for their requests. This struct data was
lingering like this due to old HTTP1 legacy thinking where it didn't
mattered..

Fixes #5566
Closes #5567
</pre>
</div>
</content>
</entry>
<entry>
<title>CODE_REVIEW.md: how to do code reviews in curl</title>
<updated>2020-06-13T20:16:58+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-11T10:04:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=350a99b21f8c89db2d027d9a5c83ed5df72d65ea'/>
<id>350a99b21f8c89db2d027d9a5c83ed5df72d65ea</id>
<content type='text'>
Assisted-by: Daniel Gustafsson
Assisted-by: Rich Salz
Assisted-by: Hugo van Kemenade
Assisted-by: James Fuller
Assisted-by: Marc Hörsken
Assisted-by: Jay Satiro

Closes #5555
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Assisted-by: Daniel Gustafsson
Assisted-by: Rich Salz
Assisted-by: Hugo van Kemenade
Assisted-by: James Fuller
Assisted-by: Marc Hörsken
Assisted-by: Jay Satiro

Closes #5555
</pre>
</div>
</content>
</entry>
<entry>
<title>altsvc: remove the num field from the altsvc struct</title>
<updated>2020-06-12T21:24:11+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-12T15:35:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=b88bdedf9c20793ee553612c897156f2f9a31dc7'/>
<id>b88bdedf9c20793ee553612c897156f2f9a31dc7</id>
<content type='text'>
It was superfluous since we have the list.size alredy

Reported-by: Jay Satiro
Fixes #5553
Closes #5563
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It was superfluous since we have the list.size alredy

Reported-by: Jay Satiro
Fixes #5553
Closes #5563
</pre>
</div>
</content>
</entry>
<entry>
<title>version.d: expanded and alpha-sorted</title>
<updated>2020-06-12T15:08:27+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-12T08:30:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=17f2dcf6b202eecb33ef316262b20791919a29ca'/>
<id>17f2dcf6b202eecb33ef316262b20791919a29ca</id>
<content type='text'>
Added a few missing features not previously mentioned. Ordered them
alphabetically.

Closes #5558
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added a few missing features not previously mentioned. Ordered them
alphabetically.

Closes #5558
</pre>
</div>
</content>
</entry>
<entry>
<title>ABI.md: rename to .md and polish the markdown</title>
<updated>2020-06-12T15:05:21+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-06-12T11:26:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=2a0269589a7dc536b2b42f0a75d7dbcacb6a4d69'/>
<id>2a0269589a7dc536b2b42f0a75d7dbcacb6a4d69</id>
<content type='text'>
Closes #5562
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5562
</pre>
</div>
</content>
</entry>
</feed>
