aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-02-23fixed some warnings in the (both new and old) base64 usageDaniel Stenberg
2004-02-23features no one seem to care much about are now moved over to the 7.11.2Daniel Stenberg
release
2004-02-23make newer MSCV7 compilers use _strtoi64() as a strtoll() replacementDaniel Stenberg
2004-02-23limit rate and windows timeoutsDaniel Stenberg
2004-02-23ares_free_errmem is goneDaniel Stenberg
2004-02-23unused and now removedDaniel Stenberg
2004-02-23Removed getpass from here. The fact this still was present here indicatesDaniel Stenberg
that this file is out of date!
2004-02-23curl_off_t is 8 bytes big on windowsDaniel Stenberg
2004-02-23switch the arguments according to the c sourceDaniel Stenberg
2004-02-23oops, the decode() function got its arguments reversed in my cleanupDaniel Stenberg
operation!
2004-02-23correct the input data structsDaniel Stenberg
2004-02-23use size_t to keep strlen() resultsDaniel Stenberg
2004-02-23simplied how create_hostcache_id() is used, and also its function somewhatDaniel Stenberg
cleared up some ssize_t/size_t mixups
2004-02-23adjusted to the modified base64 protosDaniel Stenberg
2004-02-23More size_t cleanups in the base64 functions.Daniel Stenberg
2004-02-23The base64 encode function now takes a size_t for size, not an int asDaniel Stenberg
previously.
2004-02-23more int vs long/size_t fixes after icc compiler warningsDaniel Stenberg
2004-02-23more int/long fixes after icc "remarks"Daniel Stenberg
2004-02-23next_id is an unsigned short, typecast the assign to prevent picky compilersDaniel Stenberg
to warn
2004-02-23typecase the bitfiddling results since we get a long and we store an int,Daniel Stenberg
they may not be of the size size
2004-02-23make ares_expand_name() take a long * instead of an int *, since we doDaniel Stenberg
pointer arithmetic (ptr1 - ptr2) and to do that properly on 64bit we need long
2004-02-23strlen() returns a size_t, which might be larger than int on some platformsDaniel Stenberg
2004-02-23argh, use single-quotes instead of double ones to make $Revision appearDaniel Stenberg
2004-02-23use the proper source header, and set the version string to this file'sDaniel Stenberg
revision number
2004-02-23cd back to the root path before removing the build dir, since some systemsDaniel Stenberg
refuse to remove the dir otherwise!
2004-02-22Dominick Meglio's fix for supporting multiple names in the Nameserver keyDaniel Stenberg
on Windows.
2004-02-22this code uses no long long, so we can have warnings about themDaniel Stenberg
2004-02-22the missing part of Gisle Vanem's connect-timeout fix for win32Daniel Stenberg
2004-02-21-Wno-format-nonliteral does not exist in my gcc 2.96, only use that withDaniel Stenberg
newer versions
2004-02-21mention in --limit-rate that --speed-limit might ruin the limiting slightly.Daniel Stenberg
2004-02-21David Byron's fix to allow the speed-limit logic work even if you setDaniel Stenberg
limit-rate. It does work on the expense of the rate limiter.
2004-02-21added some extra typecasts to prevent compiler warnings when convertingDaniel Stenberg
int to various types
2004-02-21inlcude krb4.h to get the proto for Curl_krb_kauth() to satisfy pickyDaniel Stenberg
compilers
2004-02-20Gisle Vanem brings name resolving timeout possibilities to windows people.Daniel Stenberg
This works by magicly starting up a new thread that can be killed when the timeout is reached. testtesttest!
2004-02-20that icc attempt in configureDaniel Stenberg
2004-02-20Some compilers warn on completely empty source files, we provide a blankDaniel Stenberg
one to prevent that.
2004-02-20Convert functions to ANSI-style declaration to prevent compiler warningsDaniel Stenberg
2004-02-20When the built-in manual is disabled, we generate a function doing nothingDaniel Stenberg
just to avoid making a totally empty file. Just to avoid compiler warnings.
2004-02-20No longer support Z as a flag to print size_t, it isn't used by libcurlDaniel Stenberg
and I doubt anyone else uses it. Better preprocessor magic for the O flag (for curl_off_t printing) to prevent compiler warnings.
2004-02-20cool.haxx.se, no longer sourceforgeDaniel Stenberg
2004-02-20Only use -Wstrict-prototypes with gcc 3.3 or later.Daniel Stenberg
It is working with earlier versions, but when I use it with 3.0.3, I can't get it to ignore errors in "system headers" with -isystem so we get excessive amounts of warnings on SSL headers which is very annoying.
2004-02-20include sys/select.h to prevent picky compiler warnings when using select()Daniel Stenberg
without proto
2004-02-20we call the macro CURLMAX() isntead of MAX(), just because it turned upDaniel Stenberg
it collides with another MAX define on some platforms (like netbsd 1.6.1)
2004-02-20oops, missed a define when I changed from Curl_ to curlx_Daniel Stenberg
2004-02-20fix protos to prevent warningsDaniel Stenberg
2004-02-20added getpart.h for the spitout() protoDaniel Stenberg
2004-02-20%HTTPPORT supported in subVariablesDaniel Stenberg
2004-02-20mention what ports the test suite usesDaniel Stenberg
2004-02-20When trying to see if there's a friendly http server on "our" port, weDaniel Stenberg
only accept return code 7 to indicate that there's no server present.
2004-02-19-Wcast-align is a bit too annoyingDaniel Stenberg