<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/tests/data/test563, branch gemini-meta</title>
<subtitle>cURL mirror with patches applied
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/'/>
<entry>
<title>tests: use proxy feature</title>
<updated>2019-10-15T05:56:55+00:00</updated>
<author>
<name>Marcel Raad</name>
<email>Marcel.Raad@teamviewer.com</email>
</author>
<published>2019-10-14T20:29:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=476eb88171982a967c35e18d4439de3a848fc916'/>
<id>476eb88171982a967c35e18d4439de3a848fc916</id>
<content type='text'>
This makes the tests succeed when using --disable-proxy.

Closes https://github.com/curl/curl/pull/4488
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes the tests succeed when using --disable-proxy.

Closes https://github.com/curl/curl/pull/4488
</pre>
</div>
</content>
</entry>
<entry>
<title>url: use the URL API internally as well</title>
<updated>2018-09-22T09:58:10+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-09-14T21:33:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=46e164069d1a5230e4e64cbd2ff46c46cce056bb'/>
<id>46e164069d1a5230e4e64cbd2ff46c46cce056bb</id>
<content type='text'>
... to make it a truly unified URL parser.

Closes #3017
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... to make it a truly unified URL parser.

Closes #3017
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: list the primary server first in the server section</title>
<updated>2017-05-08T22:40:28+00:00</updated>
<author>
<name>Dan Fandrich</name>
<email>dan@coneharvesters.com</email>
</author>
<published>2017-05-08T22:36:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=2f6bfd54997904457991fd6897ddbc309d3292ad'/>
<id>2f6bfd54997904457991fd6897ddbc309d3292ad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Proxy-Connection: stop sending this header by default"</title>
<updated>2016-08-16T06:36:04+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2016-08-16T06:36:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=93b0d907d57453b481cd9aa15bd258942e4dd34e'/>
<id>93b0d907d57453b481cd9aa15bd258942e4dd34e</id>
<content type='text'>
This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
</pre>
</div>
</content>
</entry>
<entry>
<title>Proxy-Connection: stop sending this header by default</title>
<updated>2016-02-08T10:09:40+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2016-02-04T14:07:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=113f04e664b16b944e64498a73a4dab990fe9a68'/>
<id>113f04e664b16b944e64498a73a4dab990fe9a68</id>
<content type='text'>
RFC 7230 says we should stop. Firefox already stopped.

Bug: https://github.com/curl/curl/issues/633
Reported-By: Brad Fitzpatrick

Closes #633
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RFC 7230 says we should stop. Firefox already stopped.

Bug: https://github.com/curl/curl/issues/633
Reported-By: Brad Fitzpatrick

Closes #633
</pre>
</div>
</content>
</entry>
<entry>
<title>parse_remote_port: fix ;type= URL suffix over HTTP proxy</title>
<updated>2010-08-09T22:56:45+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2010-08-09T22:56:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=dc2157a0878f3a140fac07b97687b3c3da42616b'/>
<id>dc2157a0878f3a140fac07b97687b3c3da42616b</id>
<content type='text'>
Test 563 is enabled now and verifies that the combo FTP type=A URL,
CURLOPT_PORT set and proxy work fine. As a bonus I managed to remove the
somewhat odd FTP check in parse_remote_port() and instead converted it
to a better and more generic 'slash_removed' struct field. Checking the
-&gt;protocol field isn't right since when an FTP:// URL is sent over a
HTTP proxy, the protocol is HTTP but the URL was handled by the FTP code
and thus slash_removed is set TRUE for this case.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Test 563 is enabled now and verifies that the combo FTP type=A URL,
CURLOPT_PORT set and proxy work fine. As a bonus I managed to remove the
somewhat odd FTP check in parse_remote_port() and instead converted it
to a better and more generic 'slash_removed' struct field. Checking the
-&gt;protocol field isn't right since when an FTP:// URL is sent over a
HTTP proxy, the protocol is HTTP but the URL was handled by the FTP code
and thus slash_removed is set TRUE for this case.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added and disabled test case 563 which shows KNOWN_BUGS #59.  The bug</title>
<updated>2009-05-03T19:25:17+00:00</updated>
<author>
<name>Dan Fandrich</name>
<email>dan@coneharvesters.com</email>
</author>
<published>2009-05-03T19:25:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=8119379d4fca2d1d339ff517ea7221fbbdfa6925'/>
<id>8119379d4fca2d1d339ff517ea7221fbbdfa6925</id>
<content type='text'>
report failed to mention that a proxy must be used to reproduce it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
report failed to mention that a proxy must be used to reproduce it.
</pre>
</div>
</content>
</entry>
</feed>
