Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-13 | uses select() instead of poll() even on Mac OS X 10.4 | Daniel Stenberg | |
2005-05-13 | adjusted the configure to always skip the fine-poll() test on Mac OS X (darwin) | Daniel Stenberg | |
2005-05-12 | remove blank lines | Daniel Stenberg | |
2005-05-12 | CURLOPT_SSLVERSION clarified | Daniel Stenberg | |
2005-05-12 | -z bad use warning and NTLM proxy auth in reconnect fix | Daniel Stenberg | |
2005-05-12 | oops, found by bug reported in bug report #1200661 | Daniel Stenberg | |
2005-05-12 | spell | Daniel Stenberg | |
2005-05-12 | typecast to fix warning on 64bit systems | Daniel Stenberg | |
2005-05-12 | warn about bad -z syntax | Daniel Stenberg | |
2005-05-11 | MatrixSSL and yaSSL are two free libs we _could_ support | Daniel Stenberg | |
2005-05-11 | mention the select() error fix as well | Daniel Stenberg | |
2005-05-11 | the new HTTP headers | Daniel Stenberg | |
2005-05-11 | removed duplicate | Daniel Stenberg | |
2005-05-11 | Modified 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-11 | prevent NS_IN6ADDRSZ from getting set to zero if the struct doesn't exist | Daniel Stenberg | |
2005-05-10 | Hm, this doesn't feel right. The error bits returned from Curl_select() can | Daniel 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-10 | me stupid, errno is not set for mere select()-exceptions | Daniel Stenberg | |
2005-05-10 | include protos to fix warnings | Daniel Stenberg | |
2005-05-10 | If Curl_select() returns with the error bit set, bail out. | Daniel Stenberg | |
2005-05-10 | prevent 64bit warnings | Daniel Stenberg | |
2005-05-10 | allow the ares/config.h display to fail | Daniel Stenberg | |
2005-05-09 | Jeremy Brown's OpenSSL thread-locking example | Daniel Stenberg | |
2005-05-09 | new counter | Daniel Stenberg | |
2005-05-09 | Jamie Lokier added. And I now recounted the amount better: 437 named as of now. | Daniel Stenberg | |
2005-05-09 | update the "PORTS" section a little | Daniel Stenberg | |
2005-05-09 | add multi-thread details for GnuTLS | Daniel Stenberg | |
2005-05-09 | new mirror, added amount of contributors | Daniel Stenberg | |
2005-05-09 | Jeff is short for Jeffrey | Daniel Stenberg | |
2005-05-09 | updated with the current RELEASE-NOTES names | Daniel Stenberg | |
2005-05-09 | I decided to make this list more complete. I took the 5-year anniversary list | Daniel 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-09 | no need to display src/config.h anymore since it is a duplicate of lib/config.h | Daniel Stenberg | |
but we could use having a look at ares/config.h when that is used | |||
2005-05-08 | silence compiler warnings | Daniel Stenberg | |
2005-05-07 | fix warnings about unused variables for non-debug builds | Daniel Stenberg | |
2005-05-07 | fix | Daniel Stenberg | |
2005-05-07 | January 2003. Started working on the distributed curl tests. The autobuilds. | Daniel Stenberg | |
2005-05-07 | DEBUGF() is a new conveniant macro to add infof() calls (or similar) for | Daniel Stenberg | |
debug builds only. Made the ftp code use it on several places. | |||
2005-05-07 | Added an active disconnected state, to make the code clearer. | Daniel Stenberg | |
2005-05-07 | removed unnecessary logging to ease REAL debuggin | Daniel Stenberg | |
2005-05-06 | one more command line option, fixed the AIX 4.3 enabled IPv6 build (it now | Daniel Stenberg | |
detects a bad Ipv6 situation and disables it automatically) | |||
2005-05-06 | Added two test cases for multipart formpost over a proxy with --anyauth. Our | Daniel 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-06 | When a server is clearly running, curl is now invoked to verify that it can | Daniel 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-05 | use calloc instead of malloc to save a call to memset() | Daniel Stenberg | |
2005-05-04 | now add --trace-time by default for curl tests | Daniel Stenberg | |
2005-05-04 | removed lots of (now) redundant logging | Daniel Stenberg | |
2005-05-04 | modify a value we are allowed to | Daniel Stenberg | |
2005-05-04 | improved logging (all FTP protocol data, both ways) to possibly help us realize | Daniel Stenberg | |
why sometimes the control connection dies after a RETR has been sent | |||
2005-05-04 | towards 7.14.0 - really | Daniel Stenberg | |
2005-05-04 | prevent memory leak when built SSL disabled | Daniel Stenberg | |
2005-05-03 | *MAN* was this hard to track down. Had I just read the docs properly from the | Daniel Stenberg | |
start... Anyway, fork() + exec() makes _two_ pids (in perl) that we need to track and kill after use. Thankyouverymuch. | |||
2005-05-03 | add more info to the log to ease debugging | Daniel Stenberg | |