aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2004-06-13use Curl_strcasestr() when checking wildcard cert namesDaniel Stenberg
2004-06-13added Curl_strcasestr() for case insensitive strstr() searchingDaniel Stenberg
2004-06-11removed unused include path.Gunter Knauf
2004-06-11fixed xdc generation, added lib target, load curl.nlm into ring3 by default.Gunter Knauf
2004-06-11some more makefile changes.Gunter Knauf
2004-06-11some more makefile changes.Gunter Knauf
2004-06-10cosmetic correction.Gunter Knauf
2004-06-10converted to UNIX format.Gunter Knauf
2004-06-10minor output fix.Gunter Knauf
2004-06-10added generation of missing files.Gunter Knauf
2004-06-10make include path overridable.Gunter Knauf
2004-06-10removed trailing whitespaceDaniel Stenberg
2004-06-10Gisle corrected two commentsDaniel Stenberg
2004-06-10Gisle Vanem's improved verbose output and timeout handling when connecting toDaniel Stenberg
a host name that resolves to multiple IP addresses.
2004-06-10build again with disabled httpDaniel Stenberg
2004-06-10Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing theDaniel Stenberg
path after a transfer.
2004-06-09Alexander Krasnostavsky's fix to make libcurl build fine with configureDaniel Stenberg
--disable-http, which thus builds a libcurl without HTTP support.
2004-06-09when built with HTTP disabled, provide a curl_formadd() function anyway toDaniel Stenberg
keep the API complete at all times
2004-06-09when producing curllib.dsp, include libcurl.def as a source file.Daniel Stenberg
An Alexander Krasnostavsky fix.
2004-06-09added the new source files.Gunter Knauf
2004-06-09corrected copyright.Gunter Knauf
2004-06-08corrected defines.Gunter Knauf
2004-06-08delete trailing whitespaceDaniel Stenberg
2004-06-08converted to UNIX format.Gunter Knauf
2004-06-07prevent compiler warning with picky compilersDaniel Stenberg
2004-06-07When sending info about which host that sends what, include proper directionDaniel Stenberg
to/from, based on a suggestion from Alexander Krasnostavsky
2004-06-04Günter Knauf's netware build fixesDaniel Stenberg
2004-06-03updated a commentDaniel Stenberg
2004-06-03deleted trailing whitespaceDaniel Stenberg
2004-06-03Alexander Krasnostavsky's FTP third party transfer (proxy) supportDaniel Stenberg
2004-06-03Vincent Bronner made the code use the correct user name + password whenDaniel Stenberg
doing proxy authentication.
2004-06-02very minor format editDaniel Stenberg
2004-06-02Made CURLOPT_UPLOAD and CURLOPT_PUT mean the same thing internally (theDaniel Stenberg
previous difference was not clear nor documented properly). They can now both be used interchangeably, but we prefer UPLOAD to PUT since it is a more generic term.
2004-06-02Gisle's adjustments to allow building with lcc-win32Daniel Stenberg
2004-06-02Gisle made ftp_mkd staticDaniel Stenberg
2004-06-01David Byron made this use the mm lib by default, as was previously done. ThisDaniel Stenberg
might be done differently in the future.
2004-05-28check for failing strdup()sDaniel Stenberg
2004-05-27fixed curl_easy_duphandle() to properly clean up all memory if any memoryDaniel Stenberg
function fails and it returns NULL
2004-05-26Mohun Biswas added release-zlib and debug-zlib targets.Daniel Stenberg
2004-05-26three new functions in the public APIDaniel Stenberg
2004-05-26Added a new 'bit' in the connect struct named 'tunnel_proxy' that is setDaniel Stenberg
if a connection is tunneled through a proxy. A tunnel is done with CONNECT, either when using HTTPS or FTPS, or if explicitly enabled by the app.
2004-05-25initial support for "uploading" to file:// URLsDaniel Stenberg
2004-05-25Massimiliano Ziccardi's updates for the VC6 makefilesDaniel Stenberg
2004-05-25preprocessor magic around the libidn idn_free() stuff to remain workableDaniel Stenberg
both with older libidn versions without idn_free() and with libidn versions that gets installed without idn-free.h
2004-05-25remove trailing whitespaceDaniel Stenberg
2004-05-24delete trailing whitespaceDaniel Stenberg
2004-05-24only idn_free() if built with libidnDaniel Stenberg
2004-05-24delete trailing whitespaceDaniel Stenberg
2004-05-24 Simon Josefsson added a idn_free() function in libidn 0.4.5 as a reaction toDaniel Stenberg
Gisle's previous mail. We now use this function, and thus we require libidn 0.4.5 or later. No earler version will do.
2004-05-24Robert D. Young reported that CURLOPT_COOKIEFILE and CURLOPT_COOKIE couldDaniel Stenberg
not be used both in one request. Fixed it and added test case 172 to verify.