aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2004-11-19Enable >2GB files for MingW.Gisle Vanem
2004-11-19Suppress signed vs. unsigned warnings on Win32Gisle Vanem
2004-11-19Curl_select() now uses curl_socket_t on socket argumentsDaniel Stenberg
2004-11-19Winsock sockets are not in range 0..FD_SETSIZE.Gisle Vanem
Shouldn't Curl_select() use curl_socket_t ?
2004-11-19add select.objDaniel Stenberg
2004-11-19David Phillips' FD_SETSIZE fixDaniel Stenberg
2004-11-18Dan Fandrich fix: eliminates some pedantic CodeWarrior compiler warnings andDaniel Stenberg
errors.
2004-11-16Added README.httpauth to the distDaniel Stenberg
2004-11-16saved for the futureDaniel Stenberg
2004-11-15clean up start time and t_startsingle use so that redirect_time works properlyDaniel Stenberg
2004-11-14Borland doesn't have <sys/utime.h> nor utime().Gisle Vanem
2004-11-14Static lib is libcurl.lib and import lib libcurl_imp.lib.Gisle Vanem
Added implib command. Cleanup
2004-11-13Dan fixed the CURL_DISABLE_VERBOSE_STRINGS stuff for older gcc versions sinceDaniel Stenberg
they don't support C99 varargs macros.
2004-11-13Renamed import lib to "libcurl_imp.lib".Gisle Vanem
Some cleanup and making it more readable.
2004-11-12Netware target (hosted on Linux gcc) doesn't supportGisle Vanem
or need __declspec.
2004-11-12Dan Fandrich added the --disable-crypto-auth option to configure to allowDaniel Stenberg
libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.)
2004-11-11Dan Fandrich: make --disable-dict actually disable dictDaniel Stenberg
2004-11-11Fix behaviour when passing NULL to CURLOPT_POSTFIELDS and CURLOPT_HTTPPOST.Daniel Stenberg
2004-11-11Dan Fandrich added --disable-verboseDaniel Stenberg
2004-11-11dates from 2038 or later now return 0x7fffffff when 32 bit time_t is usedDaniel Stenberg
2004-11-09Handle drive-letter on MS-DOS.Gisle Vanem
2004-11-09Changes for removing libcurl.def file on Win32.Gisle Vanem
Added "CURL_EXTERN" to memdebug.h functions. Cleaned up Makefile.vc6.
2004-11-08Change OS name. Fix header guard.Gisle Vanem
2004-11-08Un-do changes for WinCE; cdecl decoration is not needed.Gisle Vanem
Confirmed by Paul Nolan.
2004-11-08check for and require tld.h to be present before libidn usage is activatedDaniel Stenberg
in the build, since libidn 0.3.X didn't have the header and we don't support that old libidn versions anyway. This was mentioned on the list by Jean-Philippe Barrette-LaPierre and in bug report #1062264.
2004-11-05Tim Sneddon's VMS fix for huge HTTP POSTsDaniel Stenberg
2004-11-05removed errno, added EAGAINDaniel Stenberg
2004-11-05it has a sys/stat.h file, according to Paul NolanDaniel Stenberg
2004-11-04delete trailing whitespaceDaniel Stenberg
2004-11-02use ifdef not ifDaniel Stenberg
2004-11-02Paul Nolan fix to make libcurl build nicely on Windows CEDaniel Stenberg
2004-10-27Dan Fandrich's gzip handling fixDaniel Stenberg
2004-10-26Testing to define _REENTRANT unconditionally in here.Daniel Stenberg
2004-10-25Tomas Pospisek filed bug report #1053287 that proved -C - and --fail on aDaniel Stenberg
file that was already completely downloaded caused an error, while it doesn't if you don't use --fail! I added test case 194 to verify the fix. Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in libcurl v8 due to all the kludges needed to support it.
2004-10-24Mohun Biswas found out that formposting a zero-byte file didn't work veryDaniel Stenberg
good. I fixed.
2004-10-21Dan Fandrich's better ifdef for include fixDaniel Stenberg
2004-10-19Alexander Krasnostavsky made it possible to make FTP 3rd party transfers withDaniel Stenberg
both source and destination being the same host. It can be useful if you want to move a file on a server or similar.
2004-10-19CURLINFO_NUM_CONNECTS and moreDaniel Stenberg
2004-10-19djgpp has locale.h and setlocale().Gisle Vanem
2004-10-16Alexander Krasnostavsky made the CURLOPT_FTP_CREATE_MISSING_DIRS option workDaniel Stenberg
fine even for third party transfers.
2004-10-16libcurl leaked memory for cookies with the "max-age" field set.Daniel Stenberg
2004-10-16Added Traian Nicolescu's patches for threaded resolver onGisle Vanem
Windows. Plugged some potential handle and memory leaks. Refs. http://curl.haxx.se/mail/lib-2004-10/0134.html http://curl.haxx.se/mail/lib-2004-10/0157.html
2004-10-14Eric Vergnaud pointed out that libcurl didn't treat ?-letters in the user nameDaniel Stenberg
and password fields properly in URLs, like ftp://us?er:pass?word@site.com/. Added test 191 to verify the fix.
2004-10-13Set errno = ENOMEM on faild countcheck().Gisle Vanem
2004-10-12#include "strerror.h" to get the strerror protoDaniel Stenberg
2004-10-12add proper error message when send() failsDaniel Stenberg
2004-10-11removed trailing whitespaceDaniel Stenberg
2004-10-11SO_NOSIGPIPEDaniel Stenberg
2004-10-10another lame attempt to avoid the "warning: will never be executed" warningDaniel Stenberg
by gcc 3.4
2004-10-10MSVC uses 'i64' suffix for 64-bit sizes.Gisle Vanem