aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2004-03-03Tom Bates' adjustment to build on his nsr-tandem-nsk.Daniel Stenberg
2004-03-03rename struct FILE to FILEPROTO, to prevent it from causing trouble withDaniel Stenberg
the plain old FILE typedef.
2004-03-02corrected the reuse_fresh conditionDaniel Stenberg
2004-03-02Yet another curl_off_t printf format attempt, we now exclude the %-letter fromDaniel Stenberg
FORMAT_OFF_T to allow additional options to get specified, like with '"%5" FORMAT_OFF_T'.
2004-03-02use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity ofDaniel Stenberg
having to redef that name
2004-03-02- we switch to simply use FORMAT_OFF_T internallyDaniel Stenberg
- Also, we must not assume that SIZEOF_CURL_OFF_T is defined, as this file gets included from the ares dir at times and then it isn't defined.
2004-03-01Use CURL_FORMAT_OFF_T for printf()inf curl_off_t variables.Daniel Stenberg
2004-03-01Now uses CURL_FORMAT_OFF_T instead of %OdDaniel Stenberg
Fixed the check for bad resumes. Made test case 99 work and proved a bug in test case ... eh, was it 32?
2004-03-01set CURL_VERSION_LARGEFILE if we support large filesDaniel Stenberg
2004-03-01define ENABLE_64BIT if we have enabled 64bit large filesDaniel Stenberg
define our internal CURL_FORMAT_OFF_T define, we don't use the global one!
2004-03-01fixed the test code to workDaniel Stenberg
2004-03-01removed an unnecessary shift and splut up som weird two-statements-per-lineDaniel Stenberg
code
2004-03-01Support 'z' for size_t-sized integer printing, as in %zd or %zx.Daniel Stenberg
2004-03-01Only consider the fresh-connection option on the first connection made, notDaniel Stenberg
on followed redirections etc. This should fix the bug #905365, which caused NTLM to fail with the option set.
2004-03-01Only attempt to send the FTP QUIT command if we actually have a FTP struct.Daniel Stenberg
2004-03-01in Curl_disonnect(): call the protocol-specific disconnect function before weDaniel Stenberg
unlink the "current" connection struct from the connection cache.
2004-02-27fixed some more size_t/int/long warnings and removed a few CMC commentsDaniel Stenberg
2004-02-27Joe Halpin made the FTP code send 'QUIT' on the control connection beforeDaniel Stenberg
it disconnects the TCP connection, like a good ftp client should!
2004-02-26David Byron's fixes to make the latest curl build fine under MSVC 6.Daniel Stenberg
2004-02-26Gisle Vanem's added support calloc()-debugging and outputting mode forDaniel Stenberg
fopen() as well.
2004-02-26use calloc instead of malloc and we won't have to memset() the structDaniel Stenberg
2004-02-26Clear up int/long/size_t/ssize_t usage a bitDaniel Stenberg
2004-02-26use %ld when printf()ing long variables (and removed use of 'register')Daniel Stenberg
2004-02-26Don't call the lock/unlock functions if they are NULL. They can still beDaniel Stenberg
NULL without violating protocol.
2004-02-25disable the use of long double, we don't use itDaniel Stenberg
2004-02-25Based on a patch by Greg Hewgill I modified how long long is used, as weDaniel Stenberg
can use a 64bit type with MSVC that is a long long equivalent.
2004-02-23fixed some warnings in the (both new and old) base64 usageDaniel Stenberg
2004-02-23make newer MSCV7 compilers use _strtoi64() as a strtoll() replacementDaniel 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-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-22the missing part of Gisle Vanem's connect-timeout fix for win32Daniel Stenberg
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-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-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-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-19Doug Porter's patch that changes the order of preferences on how to find theDaniel Stenberg
default netrc file. We now read and uses HOME _before_ we use getpwuid() to better allow users to move around HOME to use different .netrc files without having to rely on even blacker magic.
2004-02-19Remade to use curlx_-prefix. This means this function can be compiled andDaniel Stenberg
linked separately by the application. This function is not provided by the libcurl API. It can only be accessed by apps if they compile and use this particular source code.
2004-02-18removed some "jhrg" from commentsDaniel Stenberg
2004-02-18Made curl_accept() take a 'void *' instead of 'socklen_t *' in the 3rdDaniel Stenberg
argument to also not force the casual includer to know about the socklen_t type.