c8d850db | 01-Apr-2004 |
Daniel Stenberg |
Only check that the c-ares lib is valid if we don't use the "embedded" directory. The provided ares dir is probably up-to-date, but more importantly it is often not built yet at the time when
Only check that the c-ares lib is valid if we don't use the "embedded" directory. The provided ares dir is probably up-to-date, but more importantly it is often not built yet at the time when this configure script runs.
show more ...
|
01ea3577 | 01-Apr-2004 |
Daniel Stenberg |
When ares is enabled, we now check for the ares_cancel function to verify that we use a library that is recent enough to build with the latest libcurl. |
ad9e83a9 | 01-Apr-2004 |
Daniel Stenberg |
Dirk Manske's fix that makes sure we cancel the ares resolve when we time out from a name resolve. Without this, we leak memory! |
6c9d96e8 | 01-Apr-2004 |
Daniel Stenberg |
Dirk Manske's ares_cancel() function was added. |
f840e519 | 01-Apr-2004 |
Daniel Stenberg |
edited slightly, point out our new mailinglist |
ba9272dd | 01-Apr-2004 |
Daniel Stenberg |
remind us about cvs tagging when we've built a release archive |
675db3a2 | 01-Apr-2004 |
Daniel Stenberg |
removed my previously attempted fix for ares timeouts, not needed |
1fc7ff87 | 01-Apr-2004 |
Daniel Stenberg |
Applied Joe Halpin's bugfixes to the NI_WITHSCOPEID test program. |
b643d148 | 01-Apr-2004 |
Daniel Stenberg |
Dominick Meglio man page fixes |
5804c995 | 31-Mar-2004 |
Daniel Stenberg |
Use the new HAVE_NI_WITHSCOPEID define instead of merely checking for the existance of NI_WITHSCOPEID since some platforms have that define but still can't function with it set. |
13a6f853 | 31-Mar-2004 |
Daniel Stenberg |
issue 30, digest re-negotiate works now! |
8b4582f1 | 31-Mar-2004 |
Daniel Stenberg |
recent changes |
cd3bf7c5 | 31-Mar-2004 |
Daniel Stenberg |
updates and David Byron's spellfix |
ee1595dc | 31-Mar-2004 |
Daniel Stenberg |
Roy Shan fixed a case that prevented ares name resolve timeouts to occur. |
310086de | 31-Mar-2004 |
Daniel Stenberg |
we're working on 7.11.2-CVS right now |
5d27f50f | 31-Mar-2004 |
Daniel Stenberg |
HAVE_NI_WITHSCOPEID spelled right! |
9d0330d5 | 31-Mar-2004 |
Daniel Stenberg |
Remove the elapsed time from the most recent select() only. |
d5074f74 | 31-Mar-2004 |
Daniel Stenberg |
The asynch name resolve methods now all use CURL_TIMEOUT_RESOLVE for the specific time to wait for a resolve. The definition is at the top of this source file. |
ea0cf7c8 | 31-Mar-2004 |
Daniel Stenberg |
Dirk Manske found out the Curl_wait_for_resolv() timed out too early. |
a56164c8 | 31-Mar-2004 |
Daniel Stenberg |
added swsbounce |
cd95bb22 | 31-Mar-2004 |
Daniel Stenberg |
added include to fix warning |
1745ecd8 | 31-Mar-2004 |
Daniel Stenberg |
* Fixed a memory leak when doing repeated re-negotiations. * Made the incoming line parser more forgiving to allow "name=contents" pairs where the contents isn't within double quotes. * M
* Fixed a memory leak when doing repeated re-negotiations. * Made the incoming line parser more forgiving to allow "name=contents" pairs where the contents isn't within double quotes. * Made the digest code return CURLDIGEST_BADALGO if a requested algorithm isn't supported by the code.
show more ...
|
75d66b9c | 31-Mar-2004 |
Daniel Stenberg |
test 153 tests Digest authorization and stale=true stuff |
2ff9f550 | 31-Mar-2004 |
Daniel Stenberg |
Added "swsbounce" magic: if this keyword is present in a <data> section it sets the "swsbounce" magic mode. If there follows a request for the SAME test number and the SAME part number, this
Added "swsbounce" magic: if this keyword is present in a <data> section it sets the "swsbounce" magic mode. If there follows a request for the SAME test number and the SAME part number, this mode will make the server bump the part number internally and thus return a different <dataNUM> section than it otherwise would. Test case 153 uses this in case you need an example. It is pretty involved and hard-to-use, but then the situation is pretty special over all. Enjoy.
show more ...
|
ce446dbd | 31-Mar-2004 |
Daniel Stenberg |
Moved the NI_WITHSCOPEID magic #ifdef to the top of the file and made sure we use the NIFLAGS properly on both places in the code that use getnameinfo(). |