Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-11 | Fix behaviour when passing NULL to CURLOPT_POSTFIELDS and CURLOPT_HTTPPOST. | Daniel Stenberg | |
2004-10-27 | Added --retry and --retry-delay first attempt with four related test cases. | Daniel Stenberg | |
2004-10-25 | Tomas Pospisek filed bug report #1053287 that proved -C - and --fail on a | Daniel Stenberg | |
file that was already completely downloaded caused an error, while it doesn't if you don't use --fail! I added test case 194 to verify the fix. Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in libcurl v8 due to all the kludges needed to support it. | |||
2004-10-19 | CURLINFO_NUM_CONNECTS and more | Daniel Stenberg | |
2004-10-14 | Eric Vergnaud pointed out that libcurl didn't treat ?-letters in the user name | Daniel Stenberg | |
and password fields properly in URLs, like ftp://us?er:pass?word@site.com/. Added test 191 to verify the fix. | |||
2004-10-06 | test resume and redirect | Daniel Stenberg | |
2004-10-06 | Chih-Chung Chang reported that if you use CURLOPT_RESUME_FROM and enabled | Daniel Stenberg | |
CURLOPT_FOLLOWLOCATION, libcurl reported error if a redirect happened even if the new URL would provide the resumed file. Test case 188 added to verify the fix (together with existing test 99). | |||
2004-09-16 | Location: problem with bad original URL, identified in bug report #1029478 | Daniel Stenberg | |
2004-09-10 | fixed -F to support setting type= even on parts that aren't file-uploads | Daniel Stenberg | |
2004-09-10 | - Bug report #1025986. When following a Location: with a custom Host: header | Daniel Stenberg | |
replacement, curl only replaced the Host: header on the initial request and didn't replace it on the following ones. This resulted in requests with two Host: headers. Now, curl checks if the location is on the same host as the initial request and then continues to replace the Host: header. And when it moves to another host, it doesn't replace the Host: header but it also doesn't make the second Host: header get used in the request. This change is verified by the two new test cases 184 and 185. | |||
2004-08-24 | added test 183 to verify that we properly send good Host: headers when | Daniel Stenberg | |
getting multiple URLs over a single proxy connection | |||
2004-08-23 | verify that transferring a zero byte FTP file results in a zero byte local | Daniel Stenberg | |
file | |||
2004-08-23 | Roman Koifman pointed out that libcurl send Expect: 100-continue on POSTs and | Daniel Stenberg | |
PUTs even when told to use HTTP 1.0, which is not correct. | |||
2004-08-16 | Roland Krikava's cookies over proxy fix. | Daniel Stenberg | |
2004-07-16 | test downloading from a server claiming negative content-length | Daniel Stenberg | |
2004-06-30 | NOBODY set TRUE after a POST makes a good HEAD now | Daniel Stenberg | |
2004-06-21 | added test case 513 | Daniel Stenberg | |
2004-06-19 | test 177 HTTP POST with --digest that gets a 302 response | Daniel Stenberg | |
2004-06-15 | test 176, use --ntlm and POST when the server doesn't require any auth | Daniel Stenberg | |
2004-06-15 | added test case 175, use HTTP POST and DIGEST set but the server requires no | Daniel Stenberg | |
auth | |||
2004-06-14 | added test 174, HTTP POST --anyauth to server without auth requirements. | Daniel Stenberg | |
An attempt to repeat a reported auth problem. Works for me! | |||
2004-06-04 | test 173 added: HTTP RFC1867-formpost a file from stdin with "faked" filename | Daniel Stenberg | |
2004-05-25 | initial support for "uploading" to file:// URLs | Daniel Stenberg | |
2004-05-24 | Robert D. Young reported that CURLOPT_COOKIEFILE and CURLOPT_COOKIE could | Daniel Stenberg | |
not be used both in one request. Fixed it and added test case 172 to verify. | |||
2004-05-21 | While talking to host a.b.c, libcurl did wrongly not accept cookies that were | Daniel Stenberg | |
set to the domain .a.b.c (that is with a dot prefix). This is now fixed and test case 171 verifies it. | |||
2004-05-19 | added test 170 | Daniel Stenberg | |
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg | |
2004-04-30 | added test 166, formpost with white space in file name | Daniel Stenberg | |
2004-04-29 | Introducing IDN host name testing. Test case 165 requires an IDN-capable | Daniel Stenberg | |
libcurl. | |||
2004-04-29 | test 512 does some basic curl_easy_duphandle() testing | Daniel Stenberg | |
2004-04-24 | test164 HTTP range with multiple ranges | Daniel Stenberg | |
2004-04-23 | added test 163 - a simple test case that use -F field<file, to verify that | Daniel Stenberg | |
we can pass on "odd" characters (newline, CR, tab) like this. | |||
2004-04-22 | - David Byron found and fixed a small bug with the --fail and authentication | Daniel Stenberg | |
stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that requires basic authentication, the proxy properly returns a 407, but the failure detection code doesn't realize it should give up, so curl returns with exit code 0. Test case 162 verifies this. | |||
2004-04-22 | If only a partial file was transfered, we consider that a fatal problem so | Daniel Stenberg | |
we won't try to QUIT the control connection and risk "hanging" waiting for a response. Test case 161 verifies this. The quit-sending function was also made static. | |||
2004-04-20 | test160 - for a more controlled testing of the case where libcurl starts | Daniel Stenberg | |
to re-use a connection that is closed when re-used and libcurl should then make a new fresh connection and use instead | |||
2004-04-14 | Added test case 511 in an attempt to repeat bug report #934666 "storage leak | Daniel Stenberg | |
in ftp.c", but it shows no leaking. | |||
2004-04-07 | added test 159, use --ntlm together with -0 | Daniel Stenberg | |
2004-04-07 | getting only a 100 Continue response and nothing else, when talking HTTP, | Daniel Stenberg | |
is now treated as an error by libcurl | |||
2004-03-31 | test 153 tests Digest authorization and stale=true stuff | Daniel Stenberg | |
2004-03-30 | David Byron's new test cases for the --fail and auth stuff. | Daniel Stenberg | |
2004-03-01 | added test 99, very basic initial large file test | Daniel Stenberg | |
2004-02-12 | stop doing the weirdo symlinks | Daniel Stenberg | |
2004-02-05 | Made a test that sends data on stdin to PUT, with a given length and | Daniel Stenberg | |
chunked transfer-encoding disabled. Fixed to work after Len Krause's bug report. | |||
2004-02-02 | added test 97, a simple test with -d post and a replacede content-type | Daniel Stenberg | |
header using -H | |||
2004-01-30 | added test 510, callback-based POST using chunked encoding | Daniel Stenberg | |
2004-01-13 | we no longer distribute the non-working tests 400 - 403 | Daniel Stenberg | |
2004-01-12 | Peter Sylvester brought code that now allows a callback to modified the URL | Daniel Stenberg | |
even when the multi interface is used, and then libcurl will simulate a "follow location" to that new URL. Test 509 was added to test this feature. | |||
2003-11-25 | test 95 added, verifies my fix for bug report #848371 | Daniel Stenberg | |
2003-11-24 | test proxy CONNECT requiring basic auth but we don't provide any | Daniel Stenberg | |
2003-11-20 | request a file over proxy without credentials, and get a 407 back | Daniel Stenberg | |