<feed xmlns='http://www.w3.org/2005/Atom'>
<title>curl/tests/data/test592, 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: Moved some comments so the test data files parse as XML</title>
<updated>2014-02-02T23:23:34+00:00</updated>
<author>
<name>Dan Fandrich</name>
<email>dan@coneharvesters.com</email>
</author>
<published>2014-02-02T23:23:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=2f89a61cc05030561ffb994541bc3bf344e850fd'/>
<id>2f89a61cc05030561ffb994541bc3bf344e850fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ftp tests: libcurl returns CURLE_FTP_ACCEPT_FAILED better now</title>
<updated>2013-04-06T15:51:03+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2013-04-06T15:49:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=18f0ab7bd353289049ca06c4a7105473e37a8f20'/>
<id>18f0ab7bd353289049ca06c4a7105473e37a8f20</id>
<content type='text'>
Since commit 57aeabcc1a20f, it handles errors on the control connection
while waiting for the data connection better.

Test 591 and 592 are updated accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since commit 57aeabcc1a20f, it handles errors on the control connection
while waiting for the data connection better.

Test 591 and 592 are updated accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>FTP: prevent the multi interface from blocking</title>
<updated>2012-11-04T18:05:39+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2012-11-04T17:22:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=b2954e66e87be7414a4508f8167ca531e653bea8'/>
<id>b2954e66e87be7414a4508f8167ca531e653bea8</id>
<content type='text'>
As pointed out in Bug report #3579064, curl_multi_perform() would
wrongly use a blocking mechanism internally for some commands which
could lead to for example a very long block if the LIST response never
showed.

The solution was to make sure to properly continue to use the multi
interface non-blocking state machine.

The new test 1501 verifies the fix.

Bug: http://curl.haxx.se/bug/view.cgi?id=3579064
Reported by: Guido Berhoerster
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As pointed out in Bug report #3579064, curl_multi_perform() would
wrongly use a blocking mechanism internally for some commands which
could lead to for example a very long block if the LIST response never
showed.

The solution was to make sure to properly continue to use the multi
interface non-blocking state machine.

The new test 1501 verifies the fix.

Bug: http://curl.haxx.se/bug/view.cgi?id=3579064
Reported by: Guido Berhoerster
</pre>
</div>
</content>
</entry>
<entry>
<title>FTP: perform active connections non-blocking</title>
<updated>2011-12-20T19:30:02+00:00</updated>
<author>
<name>Gokhan Sengun</name>
<email>gokhansengun@gmail.com</email>
</author>
<published>2011-12-19T13:35:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=c834213ad52c52431e9ca597862dc81839cabe84'/>
<id>c834213ad52c52431e9ca597862dc81839cabe84</id>
<content type='text'>
1- Two new error codes are introduced.

CURLE_FTP_ACCEPT_FAILED to be set whenever ACCEPTing fails because of
FTP server connected.

CURLE_FTP_ACCEPT_TIMEOUT to be set whenever ACCEPTing timeouts.

Neither of these errors are considered fatal and control connection
remains OK because it could just be a firewall blocking server to
connect to the client.

2- One new setopt option was introduced.

CURLOPT_ACCEPTTIMEOUT_MS

It sets the maximum amount of time FTP client is going to wait for a
server to connect. Internal default accept timeout is 60 seconds.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1- Two new error codes are introduced.

CURLE_FTP_ACCEPT_FAILED to be set whenever ACCEPTing fails because of
FTP server connected.

CURLE_FTP_ACCEPT_TIMEOUT to be set whenever ACCEPTing timeouts.

Neither of these errors are considered fatal and control connection
remains OK because it could just be a firewall blocking server to
connect to the client.

2- One new setopt option was introduced.

CURLOPT_ACCEPTTIMEOUT_MS

It sets the maximum amount of time FTP client is going to wait for a
server to connect. Internal default accept timeout is 60 seconds.
</pre>
</div>
</content>
</entry>
<entry>
<title>Active mode FTP test cases with server not establishing data connection</title>
<updated>2011-11-11T18:46:44+00:00</updated>
<author>
<name>Yang Tse</name>
<email>yangsita@gmail.com</email>
</author>
<published>2011-11-11T18:46:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/curl/commit/?id=082e8a3b03d2c47d237994675bface127ab23c29'/>
<id>082e8a3b03d2c47d237994675bface127ab23c29</id>
<content type='text'>
591 -&gt; FTP multi PORT and 425 on upload
592 -&gt; FTP multi PORT and 421 on upload
593 -&gt; FTP multi PORT upload, no data conn and no transient neg. reply
594 -&gt; FTP multi PORT upload, no data conn and no positive prelim. reply

1206 -&gt; FTP PORT and 425 on download
1207 -&gt; FTP PORT and 421 on download
1208 -&gt; FTP PORT download, no data conn and no transient negative reply
1209 -&gt; FTP PORT download, no data conn and no positive preliminary reply
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
591 -&gt; FTP multi PORT and 425 on upload
592 -&gt; FTP multi PORT and 421 on upload
593 -&gt; FTP multi PORT upload, no data conn and no transient neg. reply
594 -&gt; FTP multi PORT upload, no data conn and no positive prelim. reply

1206 -&gt; FTP PORT and 425 on download
1207 -&gt; FTP PORT and 421 on download
1208 -&gt; FTP PORT download, no data conn and no transient negative reply
1209 -&gt; FTP PORT download, no data conn and no positive preliminary reply
</pre>
</div>
</content>
</entry>
</feed>
