- Oct 09, 2007
- Oct 04, 2007
-
-
Daniel Stenberg authored
risk of failures.
-
Daniel Stenberg authored
This happened because the tftp code always uncondionally did a bind() without caring if one already had been done and then it failed. I wrote a test case (1009) to verify this, but it is a bit error-prone since it will have to pick a fixed local port number and since the tests are run on so many different hosts in different situations I add it in disabled state.
-
Yang Tse authored
-
- Oct 03, 2007
-
-
Yang Tse authored
-
- Oct 02, 2007
-
-
Yang Tse authored
-
Daniel Stenberg authored
Added test case 1008 to verify. Note that #47 is still there.
-
Daniel Stenberg authored
attempt to force smaller bits to get read by clients.
-
- Sep 30, 2007
-
-
Daniel Stenberg authored
target called 'filecheck' so that if you run 'make filecheck' in this directory it'll check if the local files are also mentioned in the Makefile.am so that they are properly included in release archives!
-
Daniel Stenberg authored
function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a signed / unsigned mistake in the code. I fixed it and added test case 543 to verify.
-
Yang Tse authored
-
Yang Tse authored
-
- Sep 27, 2007
-
-
Dan Fandrich authored
-
Dan Fandrich authored
variables to avoid shadowing global declarations.
-
- Sep 26, 2007
-
-
Daniel Stenberg authored
curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 response is received after a non-GET request is made. Default libcurl behaviour is to change method to GET in the subsequent request (like it does for response code 302 - because that's what many/most browsers do), but with this CURLOPT_POST301 option enabled it will do what the spec says and do the next request using the same method again. I.e keep POST after 301. The curl tool got this option as --post301 Test case 1011 and 1012 were added to verify.
-
Daniel Stenberg authored
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked over the code and made it do this properly, and added test case 542 to verify it.
-
- Sep 24, 2007
-
-
Daniel Stenberg authored
URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added.
-
- Sep 20, 2007
-
-
Dan Fandrich authored
Made a few more tests work remotely.
-
- Sep 18, 2007
-
-
Dan Fandrich authored
-
Dan Fandrich authored
-
- Sep 17, 2007
-
-
Dan Fandrich authored
-
Dan Fandrich authored
sent by curl, if not the addresses themselves.
-
Dan Fandrich authored
Added hooks to the test suite to make it possible to test a curl running on a remote host.
-
Dan Fandrich authored
-
Dan Fandrich authored
instead of hard-coding it to 127.0.0.1
-
Dan Fandrich authored
-
- Sep 15, 2007
-
-
Daniel Stenberg authored
proxies for FTP urls.
-
- Sep 14, 2007
-
-
Dan Fandrich authored
-
- Sep 12, 2007
-
-
Daniel Stenberg authored
it. This caused a segfault in some fprintf() implementations. Like on Solaris.
-
- Sep 11, 2007
-
-
Daniel Stenberg authored
- Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed out a problem with doing an empty upload over FTP on a re-used connection. I added test case 541 to reproduce it and to verify the fix. - I noticed while writing test 541 that the FTP code wrongly did a CWD on the second transfer as it didn't store and remember the "" path from the previous transfer so it would instead CWD to the entry path as stored. This worked, but did a superfluous command. Thus, test case 541 now also verifies this fix.
-
- Sep 07, 2007
-
-
Dan Fandrich authored
(to validate bug #1790403).
-
- Sep 05, 2007
-
-
Dan Fandrich authored
-
- Aug 30, 2007
-
-
Dan Fandrich authored
case 615 to test an SFTP upload failure.
-
Dan Fandrich authored
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
-
Dan Fandrich authored
cleaning up after an OOM condition in curl_multi_add_handle
-
- Aug 28, 2007
-
-
Dan Fandrich authored
by Kris/tinker105 in bug #1779054) and mention the torture tests.
-
- Aug 24, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1779054Daniel Stenberg authored
out that libcurl didn't deal with large responses from server commands, when the single response was consisting of multiple lines but of a total size of 16KB or more. Dan Fandrich improved the ftp test script and provided test case 1006 to repeat the problem, and I fixed the code to make sure this new test case runs fine.
-
- Aug 23, 2007
-
-
Dan Fandrich authored
multiple lines (similar to test case 1003).
-
Dan Fandrich authored
characters.
-