Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | allow newlines in the contents when doing -F "var=[contents]" | Daniel Stenberg | |
2004-04-22 | removed Curl_ftp_quit() as it was turned into a static in ftp.c | Daniel Stenberg | |
2004-04-22 | If a transfer is found out to be only partial, libcurl will now treat that | Daniel Stenberg | |
as a problem serious enough to skip the final QUIT command before closing the control connection. To avoid the risk that it will "hang" waiting for the QUIT response. Added test case 161 to verify 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-22 | Added comments | Daniel Stenberg | |
2004-04-22 | modified how valgrind is run to make sure that file handle 3 exists when | Daniel Stenberg | |
we tell valgrind to use that to send the logfile to | |||
2004-04-22 | danish mirror | Daniel Stenberg | |
2004-04-21 | Gisle's items | Daniel Stenberg | |
2004-04-21 | include unistd.h as well for the close() proto on some platforms (like Tru64) | Daniel Stenberg | |
2004-04-21 | typecast the tolower() argument to an int to prevent compiler warning | Daniel Stenberg | |
2004-04-21 | typecast tolower/toupper arguments to int to make picky compilers complain | Daniel Stenberg | |
less | |||
2004-04-21 | test case 160 "should work" now | Daniel Stenberg | |
2004-04-21 | Fix the "lingering close" problem when re-using a connection, as test case | Daniel Stenberg | |
160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was left alive when we were done using it before, but that was closed when we wanted to read from it again. Bad luck. Retry the same request on a fresh connect! Deleted the sockerror variable again, it serves no purpose anymore. | |||
2004-04-21 | increase the headerbytecount for incoming "headers" | Daniel Stenberg | |
2004-04-21 | log the WAIT command | Daniel Stenberg | |
2004-04-20 | cleanup leftovers | Daniel Stenberg | |
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-20 | Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed- | Daniel Stenberg | |
length limit of the hostname part of the URL. | |||
2004-04-20 | new mirror and one that changed domain | Daniel Stenberg | |
2004-04-20 | make the first response get a "connection: close" header as that is how | Daniel Stenberg | |
most 1.1 connections will be closed. The case where it gets closed anyway is subject for a new separate test. | |||
2004-04-19 | changed the logging to work when the logfile is removed during testing | Daniel Stenberg | |
2004-04-19 | Make the server include "Connection: close" in the headers of the replies | Daniel Stenberg | |
it actually will close. This is after all what HTTP 1.1 says a server should do. | |||
2004-04-19 | Gisle Vanem corrected a mistake in a recent progress fix | Daniel Stenberg | |
2004-04-17 | Gisle Vanem: patches to make sws.c compile under MingW/MSVC is | Daniel Stenberg | |
attached. And some cosmetic fixes. | |||
2004-04-17 | Gisle made a failed connect output the reason for it | Daniel Stenberg | |
2004-04-17 | NDEBUG should not be defined when CURLDEBUG is | Daniel Stenberg | |
2004-04-16 | adding issue 36 to be fixed before release | Daniel Stenberg | |
2004-04-16 | don't display the . and .. files when dumping the log/ contents | Daniel Stenberg | |
2004-04-16 | remade the logging function to better deal with removed logfiles during | Daniel Stenberg | |
the execution of the tests | |||
2004-04-15 | issue 31 - fix windows multi interface is now corrected | Daniel Stenberg | |
2004-04-15 | clarified that select() timeouts should always remain rather short | Daniel Stenberg | |
2004-04-15 | my test suite edits | Daniel Stenberg | |
2004-04-15 | change the log format to look similar to sws | Daniel Stenberg | |
added various logging info | |||
2004-04-15 | clean the log directory between each single test, so that we can better | Daniel Stenberg | |
display all logs and only logs with relevant data when a test fails and -p is used. | |||
2004-04-15 | ftp->dirs[] is no longer terminated with a zero entry but ftp->dirdepth | Daniel Stenberg | |
should be used | |||
2004-04-15 | removed the fixed dir depth limit in the FTP code | Daniel Stenberg | |
2004-04-14 | two ipresolve fixes | Daniel Stenberg | |
2004-04-14 | format fix | Daniel Stenberg | |
2004-04-14 | asking for CURL_IPRESOLVE_V6 when ipv6 addresses can't be resolved will | Daniel Stenberg | |
now cause the resolve function to return NULL immediately | |||
2004-04-14 | Gisle Vanem made the -4/-6 actually get set too | Daniel Stenberg | |
2004-04-14 | Curl_wait_for_resolv() could hang due to the bad timeout timer resolution and | Daniel Stenberg | |
some bad thinking on my part. | |||
2004-04-14 | several changes | Daniel Stenberg | |
2004-04-14 | display interesting log files on failure, if -p is used | Daniel Stenberg | |
2004-04-14 | enable verbose as well | Daniel Stenberg | |
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-13 | minor format fix | Daniel Stenberg | |
2004-04-13 | eh, these can't be used for poll()! ;-) | Daniel Stenberg | |
2004-04-13 | additional info | Daniel Stenberg | |
2004-04-13 | Gisle Vanem's fix that makes the multi interface work on Windows again even | Daniel Stenberg | |
when not using ares. |