7adf43c1 | 23-Feb-2004 |
Daniel Stenberg |
ares_free_errmem is gone |
d007e561 | 23-Feb-2004 |
Daniel Stenberg |
unused and now removed |
888eec83 | 23-Feb-2004 |
Daniel Stenberg |
Removed getpass from here. The fact this still was present here indicates that this file is out of date! |
2911e63b | 23-Feb-2004 |
Daniel Stenberg |
curl_off_t is 8 bytes big on windows |
34d247bc | 23-Feb-2004 |
Daniel Stenberg |
switch the arguments according to the c source |
99bc7e5f | 23-Feb-2004 |
Daniel Stenberg |
oops, the decode() function got its arguments reversed in my cleanup operation! |
0b1f7995 | 23-Feb-2004 |
Daniel Stenberg |
correct the input data structs |
f35c2821 | 23-Feb-2004 |
Daniel Stenberg |
use size_t to keep strlen() results |
35fd1365 | 23-Feb-2004 |
Daniel Stenberg |
simplied how create_hostcache_id() is used, and also its function somewhat cleared up some ssize_t/size_t mixups |
f4930810 | 23-Feb-2004 |
Daniel Stenberg |
adjusted to the modified base64 protos |
e1b5e154 | 23-Feb-2004 |
Daniel Stenberg |
More size_t cleanups in the base64 functions. |
1aba4c51 | 23-Feb-2004 |
Daniel Stenberg |
The base64 encode function now takes a size_t for size, not an int as previously. |
ae76a675 | 23-Feb-2004 |
Daniel Stenberg |
more int vs long/size_t fixes after icc compiler warnings |
76241d0a | 23-Feb-2004 |
Daniel Stenberg |
more int/long fixes after icc "remarks" |
89227a9d | 23-Feb-2004 |
Daniel Stenberg |
next_id is an unsigned short, typecast the assign to prevent picky compilers to warn |
dfb5090e | 23-Feb-2004 |
Daniel Stenberg |
typecase the bitfiddling results since we get a long and we store an int, they may not be of the size size |
c7fe8a7a | 23-Feb-2004 |
Daniel Stenberg |
make ares_expand_name() take a long * instead of an int *, since we do pointer arithmetic (ptr1 - ptr2) and to do that properly on 64bit we need long |
7174ca7a | 23-Feb-2004 |
Daniel Stenberg |
strlen() returns a size_t, which might be larger than int on some platforms |
2e61fde0 | 23-Feb-2004 |
Daniel Stenberg |
argh, use single-quotes instead of double ones to make $Revision appear |
41263f7d | 23-Feb-2004 |
Daniel Stenberg |
use the proper source header, and set the version string to this file's revision number |
02095ba0 | 23-Feb-2004 |
Daniel Stenberg |
cd back to the root path before removing the build dir, since some systems refuse to remove the dir otherwise! |
32a678ea | 22-Feb-2004 |
Daniel Stenberg |
Dominick Meglio's fix for supporting multiple names in the Nameserver key on Windows. |
bd7ba3bd | 22-Feb-2004 |
Daniel Stenberg |
this code uses no long long, so we can have warnings about them |
0ffec427 | 22-Feb-2004 |
Daniel Stenberg |
the missing part of Gisle Vanem's connect-timeout fix for win32 |
ea4cd4d8 | 21-Feb-2004 |
Daniel Stenberg |
-Wno-format-nonliteral does not exist in my gcc 2.96, only use that with newer versions |