aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-05-14Updated generated dependencies.Gisle Vanem
2005-05-14Some patches for (a stricter/smarter) gcc 4.0 andGisle Vanem
warnings like: 'x' may be used uninitialized in this function.
2005-05-14'ssize_t' seems to be a gcc 4.x built-in.Gisle Vanem
2005-05-14Change for systems with >1 ways of setting (non-)blockingGisle Vanem
mode. (djgpp/Watt-32 has 3 ways). Should rewrite this using "#elif ..", but maybe there is still broken cpp around?
2005-05-13updatedDaniel Stenberg
2005-05-13uses select() instead of poll() even on Mac OS X 10.4Daniel Stenberg
2005-05-13adjusted the configure to always skip the fine-poll() test on Mac OS X (darwin)Daniel Stenberg
2005-05-12remove blank linesDaniel Stenberg
2005-05-12CURLOPT_SSLVERSION clarifiedDaniel Stenberg
2005-05-12-z bad use warning and NTLM proxy auth in reconnect fixDaniel Stenberg
2005-05-12oops, found by bug reported in bug report #1200661Daniel Stenberg
2005-05-12spellDaniel Stenberg
2005-05-12typecast to fix warning on 64bit systemsDaniel Stenberg
2005-05-12warn about bad -z syntaxDaniel Stenberg
2005-05-11MatrixSSL and yaSSL are two free libs we _could_ supportDaniel Stenberg
2005-05-11mention the select() error fix as wellDaniel Stenberg
2005-05-11the new HTTP headersDaniel Stenberg
2005-05-11removed duplicateDaniel Stenberg
2005-05-11Modified the default HTTP headers used by libcurl:Daniel Stenberg
A) Normal non-proxy HTTP: - no more "Pragma: no-cache" (this only makes sense to proxies) B) Non-CONNECT HTTP request over proxy: - "Pragma: no-cache" is used (like before) - "Proxy-Connection: Keep-alive" (for older style 1.0-proxies) C) CONNECT HTTP request over proxy: - "Host: [name]:[port]" - "Proxy-Connection: Keep-alive"
2005-05-11prevent NS_IN6ADDRSZ from getting set to zero if the struct doesn't existDaniel Stenberg
2005-05-10Hm, this doesn't feel right. The error bits returned from Curl_select() canDaniel Stenberg
be returned at times when we want to ignore them. Test case 160 fails on Linux, so I modify the comparison to check for _only_ the error bit set...
2005-05-10me stupid, errno is not set for mere select()-exceptionsDaniel Stenberg
2005-05-10include protos to fix warningsDaniel Stenberg
2005-05-10If Curl_select() returns with the error bit set, bail out.Daniel Stenberg
2005-05-10prevent 64bit warningsDaniel Stenberg
2005-05-10allow the ares/config.h display to failDaniel Stenberg
2005-05-09Jeremy Brown's OpenSSL thread-locking exampleDaniel Stenberg
2005-05-09new counterDaniel Stenberg
2005-05-09Jamie Lokier added. And I now recounted the amount better: 437 named as of now.Daniel Stenberg
2005-05-09update the "PORTS" section a littleDaniel Stenberg
2005-05-09add multi-thread details for GnuTLSDaniel Stenberg
2005-05-09new mirror, added amount of contributorsDaniel Stenberg
2005-05-09Jeff is short for JeffreyDaniel Stenberg
2005-05-09updated with the current RELEASE-NOTES namesDaniel Stenberg
2005-05-09I decided to make this list more complete. I took the 5-year anniversary listDaniel Stenberg
from 2003 and added all names from all release notes in the CVS (there is a slight gap though). I removed names with only first names (Like "Chris" and "Ralph") , as that won't make anyone happy and we might list their full names as well anyway. This list is now intended to include _all_ people that contribute: big or small. 389 names at the time of this commit.
2005-05-09no need to display src/config.h anymore since it is a duplicate of lib/config.hDaniel Stenberg
but we could use having a look at ares/config.h when that is used
2005-05-08silence compiler warningsDaniel Stenberg
2005-05-07fix warnings about unused variables for non-debug buildsDaniel Stenberg
2005-05-07fixDaniel Stenberg
2005-05-07January 2003. Started working on the distributed curl tests. The autobuilds.Daniel Stenberg
2005-05-07DEBUGF() is a new conveniant macro to add infof() calls (or similar) forDaniel Stenberg
debug builds only. Made the ftp code use it on several places.
2005-05-07Added an active disconnected state, to make the code clearer.Daniel Stenberg
2005-05-07removed unnecessary logging to ease REAL debugginDaniel Stenberg
2005-05-06one more command line option, fixed the AIX 4.3 enabled IPv6 build (it nowDaniel Stenberg
detects a bad Ipv6 situation and disables it automatically)
2005-05-06Added two test cases for multipart formpost over a proxy with --anyauth. OurDaniel Stenberg
HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (and received)...
2005-05-06When a server is clearly running, curl is now invoked to verify that it canDaniel Stenberg
download a file from the server before the server is considered fine to use for the given test case. This should fix the cases where the server can run but curl cannot work with it.
2005-05-05use calloc instead of malloc to save a call to memset()Daniel Stenberg
2005-05-04now add --trace-time by default for curl testsDaniel Stenberg
2005-05-04removed lots of (now) redundant loggingDaniel Stenberg
2005-05-04modify a value we are allowed toDaniel Stenberg