42f60ecb | 23-Apr-2004 |
Daniel Stenberg |
require SSL as otherwise NTLM doesn't work! |
550862f4 | 22-Apr-2004 |
Daniel Stenberg |
missing brace |
6838f74f | 22-Apr-2004 |
Daniel Stenberg |
allow newlines in the contents when doing -F "var=[contents]" Robert Marlow reported. |
2ff30d06 | 22-Apr-2004 |
Daniel Stenberg |
- David Byron found and fixed a small bug with the --fail and authentication stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that req
- David Byron found and fixed a small bug with the --fail and authentication 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.
show more ...
|
84406b3e | 22-Apr-2004 |
Daniel Stenberg |
allow newlines in the contents when doing -F "var=[contents]" |
c323969b | 22-Apr-2004 |
Daniel Stenberg |
removed Curl_ftp_quit() as it was turned into a static in ftp.c |
43cbbdbe | 22-Apr-2004 |
Daniel Stenberg |
If a transfer is found out to be only partial, libcurl will now treat that as a problem serious enough to skip the final QUIT command before closing the control connection. To avoid the risk
If a transfer is found out to be only partial, libcurl will now treat that 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.
show more ...
|
1d3f76df | 22-Apr-2004 |
Daniel Stenberg |
If only a partial file was transfered, we consider that a fatal problem so we won't try to QUIT the control connection and risk "hanging" waiting for a response. Test case 161 verifies this.
If only a partial file was transfered, we consider that a fatal problem so 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.
show more ...
|
33cb93ad | 22-Apr-2004 |
Daniel Stenberg |
Added comments |
4dc9179f | 22-Apr-2004 |
Daniel Stenberg |
modified how valgrind is run to make sure that file handle 3 exists when we tell valgrind to use that to send the logfile to |
26a5ec9a | 22-Apr-2004 |
Daniel Stenberg |
danish mirror |
883ea311 | 21-Apr-2004 |
Daniel Stenberg |
Gisle's items |
62b7c08b | 21-Apr-2004 |
Daniel Stenberg |
include unistd.h as well for the close() proto on some platforms (like Tru64) |
a85fa66c | 21-Apr-2004 |
Daniel Stenberg |
typecast the tolower() argument to an int to prevent compiler warning |
9ba010c6 | 21-Apr-2004 |
Daniel Stenberg |
typecast tolower/toupper arguments to int to make picky compilers complain less |
3ef3f2b6 | 21-Apr-2004 |
Daniel Stenberg |
test case 160 "should work" now |
1401d909 | 21-Apr-2004 |
Daniel Stenberg |
Fix the "lingering close" problem when re-using a connection, as test case 160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was
Fix the "lingering close" problem when re-using a connection, as test case 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.
show more ...
|
32333226 | 21-Apr-2004 |
Daniel Stenberg |
increase the headerbytecount for incoming "headers" |
e373f1fd | 21-Apr-2004 |
Daniel Stenberg |
log the WAIT command |
dc25cd6f | 20-Apr-2004 |
Daniel Stenberg |
cleanup leftovers |
0e31d41d | 20-Apr-2004 |
Daniel Stenberg |
test160 - for a more controlled testing of the case where libcurl starts to re-use a connection that is closed when re-used and libcurl should then make a new fresh connection and use instead |
b7a76004 | 20-Apr-2004 |
Daniel Stenberg |
Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed- length limit of the hostname part of the URL. |
111a2f30 | 20-Apr-2004 |
Daniel Stenberg |
new mirror and one that changed domain |
760cecac | 20-Apr-2004 |
Daniel Stenberg |
make the first response get a "connection: close" header as that is how most 1.1 connections will be closed. The case where it gets closed anyway is subject for a new separate test. |
6f8b4395 | 19-Apr-2004 |
Daniel Stenberg |
changed the logging to work when the logfile is removed during testing |