Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-10 | Now requires an OS string defined by the config*.h file | Daniel Stenberg | |
2004-03-10 | make windows builds use the OS string "i386-pc-win32" instead of just "win32" | Daniel Stenberg | |
to make it more like other OS strings | |||
2004-03-10 | Make sure SIZEOF_CURL_OFF_T is defined before we check for it being > 4. | Daniel Stenberg | |
It is only undefined when this file is included by others (like ares) and in those cases it doesn't matter. | |||
2004-03-10 | removed the #if 0'ed pragmas that disable warnings on msvc | Daniel Stenberg | |
2004-03-10 | moved the curl_socket_t typedef downwards | Daniel Stenberg | |
2004-03-09 | Use curl_socket_t instead of int for holding sockets. The typedefs and | Daniel Stenberg | |
defines are in setup.h. | |||
2004-03-09 | only build with the windows threading trace code if | Daniel Stenberg | |
DEBUG_THREADING_GETHOSTBYNAME is defined | |||
2004-03-09 | explicit typecast to visualize that we really want the result of the | Daniel Stenberg | |
operation as a size_t | |||
2004-03-09 | Tor Arntsen's fix to a AIX build problem | Daniel Stenberg | |
2004-03-09 | added HAVE_IOCTLSOCKET here | Daniel Stenberg | |
2004-03-08 | don't compare signed/unsigned | Daniel Stenberg | |
2004-03-08 | Commented the Curl_read() arguments. | Daniel Stenberg | |
2004-03-08 | size_t/int fix | Daniel Stenberg | |
2004-03-08 | strlen() returns size_t | Daniel Stenberg | |
2004-03-08 | waitconnect() takes the timeout argument as a long | Daniel Stenberg | |
2004-03-08 | store size as size_t | Daniel Stenberg | |
use %zd when outputting size_t | |||
2004-03-08 | don't use 'register' | Daniel Stenberg | |
make strtol() returns get stored in long variables don't mix size_t with int | |||
2004-03-08 | size_t/int/long fixes | Daniel Stenberg | |
2004-03-08 | we must not only support long long for Largefile to work, we must have | Daniel Stenberg | |
a curl_off_t type that is larger than 4 bytes | |||
2004-03-05 | issue 12 fix | Daniel Stenberg | |
2004-03-05 | another include to prevent warnings | Daniel Stenberg | |
2004-03-05 | more fixing to make the progress/getinfo stuff to work properly when doing | Daniel Stenberg | |
file: transfers too | |||
2004-03-05 | clearly tell that these are ftp response timeouts | Daniel Stenberg | |
2004-03-04 | When following to a new URL, we must make sure to call Curl_done() first, | Daniel Stenberg | |
since the current connection must be taken care of properly before we move on. Christopher R. Palmer reported a problem he found due to this mistake. | |||
2004-03-04 | Andrés García's patch to prevent warnings while compiling with mingw, mainly | Daniel Stenberg | |
because it is now possible to have both WIN32 and HAVE_CONFIG_H defined. | |||
2004-03-04 | use size_t for the data, but keep the protos use ssize_t to better fit | Daniel Stenberg | |
with the existing transfer.c code | |||
2004-03-04 | include the proper header file too | Daniel Stenberg | |
2004-03-04 | fix progress data to be updated properly for file: transfers, as reported | Daniel Stenberg | |
by Jesse Noller | |||
2004-03-04 | prevent harmless compiler warning | Daniel Stenberg | |
2004-03-03 | David Byron's work on making libcurl only require winsock 1.1 on Windows | Daniel Stenberg | |
machines. | |||
2004-03-03 | more variable type cleanups | Daniel Stenberg | |
2004-03-03 | our timeout values are longs while 'tv_sec' is int | Daniel Stenberg | |
2004-03-03 | make the backup variable of the same kind as the data it backups! ;-) | Daniel Stenberg | |
2004-03-03 | some more size_t usage, and two added typecasts when converting from size_t | Daniel Stenberg | |
to long (MIPSpro warnings) | |||
2004-03-03 | tv_sec is an int, so we explicitly typecast the result of long - long to | Daniel Stenberg | |
an int when we assign it. | |||
2004-03-03 | Tom Bates' adjustment to build on his nsr-tandem-nsk. | Daniel Stenberg | |
2004-03-03 | rename struct FILE to FILEPROTO, to prevent it from causing trouble with | Daniel Stenberg | |
the plain old FILE typedef. | |||
2004-03-02 | corrected the reuse_fresh condition | Daniel Stenberg | |
2004-03-02 | Yet another curl_off_t printf format attempt, we now exclude the %-letter from | Daniel Stenberg | |
FORMAT_OFF_T to allow additional options to get specified, like with '"%5" FORMAT_OFF_T'. | |||
2004-03-02 | use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of | Daniel Stenberg | |
having to redef that name | |||
2004-03-02 | - we switch to simply use FORMAT_OFF_T internally | Daniel 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-01 | Use CURL_FORMAT_OFF_T for printf()inf curl_off_t variables. | Daniel Stenberg | |
2004-03-01 | Now uses CURL_FORMAT_OFF_T instead of %Od | Daniel 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-01 | set CURL_VERSION_LARGEFILE if we support large files | Daniel Stenberg | |
2004-03-01 | define ENABLE_64BIT if we have enabled 64bit large files | Daniel Stenberg | |
define our internal CURL_FORMAT_OFF_T define, we don't use the global one! | |||
2004-03-01 | fixed the test code to work | Daniel Stenberg | |
2004-03-01 | removed an unnecessary shift and splut up som weird two-statements-per-line | Daniel Stenberg | |
code | |||
2004-03-01 | Support 'z' for size_t-sized integer printing, as in %zd or %zx. | Daniel Stenberg | |
2004-03-01 | Only consider the fresh-connection option on the first connection made, not | Daniel Stenberg | |
on followed redirections etc. This should fix the bug #905365, which caused NTLM to fail with the option set. | |||
2004-03-01 | Only attempt to send the FTP QUIT command if we actually have a FTP struct. | Daniel Stenberg | |