<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/tests/data/test1230, 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>CONNECT: reject TE or CL in 2xx responses</title>
<updated>2016-12-01T15:18:36+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2016-11-29T15:22:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c50b878c15e029111787f6019b46581ecbc30c62'/>
<id>c50b878c15e029111787f6019b46581ecbc30c62</id>
<content type='text'>
A server MUST NOT send any Transfer-Encoding or Content-Length header
fields in a 2xx (Successful) response to CONNECT. (RFC 7231 section
4.3.6)

Also fixes the three test cases that did this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A server MUST NOT send any Transfer-Encoding or Content-Length header
fields in a 2xx (Successful) response to CONNECT. (RFC 7231 section
4.3.6)

Also fixes the three test cases that did this.
</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>curl: stop interpreting IPv6 literals as glob patterns.</title>
<updated>2014-03-30T21:45:29+00:00</updated>
<author>
<name>Paul Marks</name>
<email>pmarks@google.com</email>
</author>
<published>2014-03-30T05:50:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=0bc4938eecccefdf8906bf9c488e4cd9c8467e99'/>
<id>0bc4938eecccefdf8906bf9c488e4cd9c8467e99</id>
<content type='text'>
This makes it possible to fetch from an IPv6 literal without specifying
the -g option.  Globbing remains available elsehwere in the URL.

For example:
  curl http://[::1]/file[1-3].txt

This creates no ambiguity, because there is no overlap between the
syntax of valid globs and valid IPv6 literals.  Globs contain hyphens
and at most 1 colon, while IPv6 literals have no hyphens, and at least 2
colons.

The peek_ipv6() parser simply whitelists a set of characters and counts
colons, because the real validation happens later on.  The character set
includes A-Z, in case someone decides to implement support for scopes
like [fe80::1%25eth0] in the future.

Signed-off-by: Paul Marks &lt;pmarks@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes it possible to fetch from an IPv6 literal without specifying
the -g option.  Globbing remains available elsehwere in the URL.

For example:
  curl http://[::1]/file[1-3].txt

This creates no ambiguity, because there is no overlap between the
syntax of valid globs and valid IPv6 literals.  Globs contain hyphens
and at most 1 colon, while IPv6 literals have no hyphens, and at least 2
colons.

The peek_ipv6() parser simply whitelists a set of characters and counts
colons, because the real validation happens later on.  The character set
includes A-Z, in case someone decides to implement support for scopes
like [fe80::1%25eth0] in the future.

Signed-off-by: Paul Marks &lt;pmarks@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Added missing HTTP proxy keywords</title>
<updated>2014-01-25T15:55:05+00:00</updated>
<author>
<name>Dan Fandrich</name>
<email>dan@coneharvesters.com</email>
</author>
<published>2014-01-25T15:55:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=88b074df3f26f6a38e20dd281bd63fa295ea912d'/>
<id>88b074df3f26f6a38e20dd281bd63fa295ea912d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test1230: avoid using hard-wired port number</title>
<updated>2013-06-22T20:12:49+00:00</updated>
<author>
<name>Kamil Dudka</name>
<email>kdudka@redhat.com</email>
</author>
<published>2013-06-22T20:12:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=02964ed630c0fc74b47d0c94735d328661388d69'/>
<id>02964ed630c0fc74b47d0c94735d328661388d69</id>
<content type='text'>
... to prevent failure when a non-default -b option is given
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... to prevent failure when a non-default -b option is given
</pre>
</div>
</content>
</entry>
<entry>
<title>test1230: verify CONNECT to a numerical ipv6-address</title>
<updated>2013-06-04T20:52:13+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2013-06-04T20:52:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=51b3445e847dca139dabacc90bb867836bb45692'/>
<id>51b3445e847dca139dabacc90bb867836bb45692</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
