- Feb 09, 2010
-
-
Dan Fandrich authored
-
- Feb 04, 2010
- Feb 03, 2010
-
-
Yang Tse authored
cookies with same path length might get sorted in different order when using different qsort implementations. In order to make this test give same results on different systems, paths now have different lengths.
-
Yang Tse authored
added an additional second to allow test to pass on heavily loaded servers
-
- Feb 01, 2010
- Jan 29, 2010
-
-
Yang Tse authored
Chris Conroy fixed test #568 issues with carriage returns
-
- Jan 28, 2010
- Jan 22, 2010
-
-
Yang Tse authored
-
- Jan 21, 2010
-
-
Daniel Stenberg authored
-
- Jan 20, 2010
-
-
Daniel Stenberg authored
identical names but different paths properly
-
- Jan 19, 2010
-
-
Daniel Stenberg authored
HTTP Cookie: header _needs_ to be sorted on the path length in the cases where two cookies using the same name are set more than once using (overlapping) paths. Realizing this, identically named cookies must be sorted correctly. But detecting only identically named cookies and take care of them individually is harder than just to blindly and unconditionally sort all cookies based on their path lengths. All major browsers also already do this, so this makes our behavior one step closer to them in the cookie area. Test case 8 was the only one that broke due to this change and I updated it accordingly.
-
Daniel Stenberg authored
pointed it out to me)
-
Daniel Stenberg authored
again when downloading files over FTP using ASCII and it turns out that the final size of the file is not the same as the initial size the server reported. This is very common since servers don't take the newline conversions into account.
-
- Jan 18, 2010
-
-
Dan Fandrich authored
-
- Jan 13, 2010
-
-
Yang Tse authored
-
- Jan 12, 2010
-
-
Yang Tse authored
and slow data transfer in a similar way as test case #1086 does for FTP. This also exercises <killserver> section for the FTPS server.
-
- Jan 11, 2010
-
-
Daniel Stenberg authored
present in the tests/data/Makefile.am and outputs a notice message on the screen if not. Each test file has to be included in that Makefile.am to get included in release archives and forgetting to add files there is a common mistake. This is an attempt to make it harder to forget.
-
- Jan 07, 2010
-
-
Claes Jakobsson authored
-
- Jan 06, 2010
-
-
Yang Tse authored
-
Claes Jakobsson authored
-
- Jan 01, 2010
-
-
Daniel Stenberg authored
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail.
-
- Dec 30, 2009
-
-
Daniel Stenberg authored
user name
-
Daniel Stenberg authored
sequences in uploaded data. The test server doesn't "decode" escaped dot-lines but instead test cases must be written to take them into account. Added test case 803 to verify dot-escaping.
-
- Dec 29, 2009
-
-
Daniel Stenberg authored
-
- Dec 24, 2009
-
-
Yang Tse authored
-
- Dec 21, 2009
-
-
Daniel Stenberg authored
-
- Dec 20, 2009
-
-
Daniel Stenberg authored
-
- Dec 17, 2009
-
-
Daniel Stenberg authored
struct, and instead use the already stored string in the handler struct.
-
- Dec 16, 2009
-
-
Yang Tse authored
-
- Dec 14, 2009
-
-
Daniel Stenberg authored
detects and uses proxies based on the environment variables. If the proxy was given as an explicit option it worked, but due to the setup order mistake proxies would not be used fine for a few protocols when picked up from '[protocol]_proxy'. Obviously this broke after 7.19.4. I now also added test case 1106 that verifies this functionality. (http://curl.haxx.se/bug/view.cgi?id=2913886)
-
- Dec 12, 2009
-
-
Daniel Stenberg authored
-
- Dec 10, 2009
-
-
Daniel Stenberg authored
on FTP errors in the transient 5xx range. Transient FTP errors are in the 4xx range. The code itself only tried on 5xx errors that occured _at login_. Now the retry code retries on all FTP transfer failures that ended with a 4xx response. (http://curl.haxx.se/bug/view.cgi?id=2911279)
-
- Dec 07, 2009
-
-
Daniel Stenberg authored
with unknown size. Previously it was only used for posts with a known size larger than 1024 bytes.
-
- Oct 30, 2009
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2884561) but it seems to work for me...
-
Daniel Stenberg authored
POST using a read callback, with Digest authentication and "Transfer-Encoding: chunked" enforced. I would then cause the first request to be wrongly sent and then basically hang until the server closed the connection. I fixed the problem and added test case 565 to verify it.
-
- Oct 25, 2009
-
-
Daniel Stenberg authored
unparsable expiry dates and then treat them as session cookies - previously libcurl would reject cookies with a date format it couldn't parse. Research shows that the major browser treat such cookies as session cookies. I modified test 8 and 31 to verify this.
-
- Sep 26, 2009
-
-
Daniel Stenberg authored
saving received cookies with no given path, if the path in the request had a query part. That is means a question mark (?) and characters on the right side of that. I wrote test case 1105 and fixed this problem.
-