bbae5b49 | 27-Oct-2006 |
Gisle Vanem |
Added 'RECV_TYPE_ARGx' needed in getinfo.c. |
772a985d | 27-Oct-2006 |
Yang Tse |
Update copyright year, since the file has been modified |
8a7514de | 27-Oct-2006 |
Yang Tse |
Compiler warning fix |
32ad212a | 27-Oct-2006 |
Yang Tse |
30 seconds isn't long enough for this test on a loaded server. |
8a8d5c78 | 27-Oct-2006 |
Yang Tse |
Do an explicit typecast of data pointers to function pointers to avoid picky compiler warnings, since this is what we want! |
125830ab | 26-Oct-2006 |
Gisle Vanem |
Use proper 'stat' structure for fstat(). I.e. 'struct _stati64' and '_fstati64()' on Win32. |
5b75b423 | 26-Oct-2006 |
Yang Tse |
Improved rlimit logic: - Take in account RLIM_INFINITY. - Verify that soft limit is actually changed when doing so. - Show errno in case getrlimit or setrlimit fails. - Keep file desc
Improved rlimit logic: - Take in account RLIM_INFINITY. - Verify that soft limit is actually changed when doing so. - Show errno in case getrlimit or setrlimit fails. - Keep file descriptors open only while runing this test.
show more ...
|
012d7e28 | 26-Oct-2006 |
Yang Tse |
Fix Curl_open() not reporting failure when allocation of the buffer used to store headers in the SessionHandle failed. |
cd3029f3 | 26-Oct-2006 |
Yang Tse |
30 seconds isn't long enough for this test on a loaded server. |
6adaac7e | 25-Oct-2006 |
Daniel Stenberg |
a Smalltalk binding |
cde5e35d | 25-Oct-2006 |
Daniel Stenberg |
Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not p
Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change.
show more ...
|
ee17fba7 | 25-Oct-2006 |
Gisle Vanem |
Fixed "'x' might be used uninitialized in this function" warning. Removed trailing whitespace. |
6296b893 | 25-Oct-2006 |
Gisle Vanem |
Added '-d' option for Watt32 targets. Added cvs id. |
5450db91 | 25-Oct-2006 |
Yang Tse |
Compiler warning fix |
b4700f02 | 25-Oct-2006 |
Yang Tse |
Add project notice and file Id |
d771fa7c | 25-Oct-2006 |
Yang Tse |
Compiler warning fix |
b2c37826 | 25-Oct-2006 |
Daniel Stenberg |
updated copyright year |
384c8f35 | 25-Oct-2006 |
Yang Tse |
Use curl_global_init() and curl_global_cleanup(). Improve cleanup in case of initialization failure. |
f44ef427 | 24-Oct-2006 |
Daniel Stenberg |
other pipelining fixes by Ravi Pratap, that now makes pipelines get used better |
c54a4301 | 24-Oct-2006 |
Yang Tse |
Abort test if it seems that it would have run forever. This is just to prevent test hanging and actually is an indication that there's a condition that is not being properly handled at some p
Abort test if it seems that it would have run forever. This is just to prevent test hanging and actually is an indication that there's a condition that is not being properly handled at some point in the library. Remove a pair of braces and adjust indentation appropriately.
show more ...
|
36a35142 | 23-Oct-2006 |
Daniel Stenberg |
the check in ConnectionExists() for not re-using a non-resolved connection now applies for asynch name resolves in general and not only ares |
e1edd41e | 23-Oct-2006 |
Daniel Stenberg |
Ravi Pratap provided a major update with pipelining fixes. We also no longer re-use connections (for pipelining) before the name resolving is done. |
13e60c55 | 23-Oct-2006 |
Yang Tse |
Avoid trying to compare more than strlen bytes. |
9b8b1a68 | 23-Oct-2006 |
Dan Fandrich |
30 seconds isn't long enough for this test on a loaded server. |
4ec93161 | 23-Oct-2006 |
Yang Tse |
Replace is*() macros with our own IS*() ones. |