aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2001-08-26improved the testDaniel Stenberg
2001-08-26Added #include <string.h> and removed a silly mistakenly added ,Daniel Stenberg
2001-08-24rewrite to work around BSD announcement license issues, this is alsoDaniel Stenberg
somewhat easier to understand if I may say so. It is slightly slower.
2001-08-24T. Bharath's patch => linking with multithreaded versions of the c runtimeDaniel Stenberg
library for use in multithreaded apps
2001-08-24newly re-generated from the modified getdate.yDaniel Stenberg
2001-08-24include setup.h properly, not config.hDaniel Stenberg
2001-08-24extern declarations no longer done on windows (T. Bharath's patch)Daniel Stenberg
2001-08-24cleanupsDaniel Stenberg
2001-08-24Tim Costello's bug report #454856Daniel Stenberg
2001-08-24strcasecmp() is banned from our code, should be strequal() everywhere!Daniel Stenberg
Tim Costello reported bug report #454858.
2001-08-23When setting *_URL or *_PROXY in *_setopt(), it is important that we checkDaniel Stenberg
and possibly free the existing pointer first, and then clear the "allocated" bit. We previously mistakenly could free the new pointer passed to us by the friendly user...!
2001-08-23started working on a function for writing (all) cookies, made it possibleDaniel Stenberg
to read multiple cookie files, no longer writes to the URL string passed to the _add() function. The new stuff is now conditionally compiled on the COOKIE define. Changed the _init() proto.
2001-08-23As Steve Lhomme pointed out, this generates 'libcurl.dll' now instead ofDaniel Stenberg
the previous 'curl.dll'
2001-08-23I want Sterling to be my friend, so I wasted some time on splitting up theDaniel Stenberg
huge monster function _ftp() into more little functions. There are still more that can be done, but this is at least improving readability and maintainability... :-)
2001-08-22CURLOPT_FTPASCII is the old name, CURLOPT_TRANSFERTEXT is the newDaniel Stenberg
2001-08-21Georg Huettenegger's patch curl-7.8.1-pre5-patch-20010819Daniel Stenberg
2001-08-21As Andrés García reported we need to fflush() the data->err so that theDaniel Stenberg
progress meter looks better on windows (and if the data->err is redirected from stderr it also makes a point)
2001-08-20Albert Chin's neat configure/package fixesDaniel Stenberg
2001-08-18<couldn't resist>Sterling Hughes
Use a more appropriate variable name </couldn't resist>
2001-08-17Curl_ prefix added to a few function callsDaniel Stenberg
2001-08-17include getinfo.h for Curl_getinfo() protoDaniel Stenberg
2001-08-17modified to use the renamed kerberos functions with Curl_ prefixDaniel Stenberg
2001-08-17Added two fields in the connectdata struct for kerberos fiddlesDaniel Stenberg
2001-08-17use the Curl_ name spaceDaniel Stenberg
removed unused code removed use of global variable(s)
2001-08-17removed dead/unused codeDaniel Stenberg
removed use of global variables removed name space pollutions (added Curl_ prefixes)
2001-08-17Curl_ prefixDaniel Stenberg
2001-08-17cleaned up rewriteDaniel Stenberg
2001-08-15IPv6-addresses can have dots too!Daniel Stenberg
2001-08-15extract IPv6-style specified IP-addresses properlyDaniel Stenberg
2001-08-15const fixesDaniel Stenberg
2001-08-15Using CURLOPT_POST without using CURLOPT_POSTFIELDS caused us to strlen()Daniel Stenberg
a NULL pointer. Now, we treat a missing CURLOPT_POSTFIELDS as if there is no data to send.
2001-08-15removed one compiler error and two "unused variable" warningsDaniel Stenberg
2001-08-15more _ftp_cwdSterling Hughes
2001-08-15ftp_cwd() abstractionSterling Hughes
"%" -> "%s"
2001-08-15This can be used in another place (Curl_ftp_done :)...Sterling Hughes
declare at the top of the file, put the private functions at the bottom of the file, however, this is clearer imho (since _ftp is already there).
2001-08-15non-public functions should not use CURL * as arguments, so I changed themDaniel Stenberg
to use 'struct UrlData *' instead
2001-08-15modified the Curl_perform() protoDaniel Stenberg
2001-08-15must merge before commitSterling Hughes
must merge before commit must merge before commit
2001-08-15removed protos that were moved to url.h and the new getinfo.hDaniel Stenberg
2001-08-15moved the url.c prototypes to hereDaniel Stenberg
2001-08-15calls Curl_initinfo() in perform().Daniel Stenberg
2001-08-15begin abstraction process...Sterling Hughes
2001-08-15prototypes for getinfo.cDaniel Stenberg
2001-08-15Added Curl_initinfo() that's supposed to init session-specific getinfo-Daniel Stenberg
variables
2001-08-15internal functions should not use 'CURL *' as arguments, I replaced themDaniel Stenberg
with the more appropriate 'struct UrlData *' instead.
2001-08-15added getinfo.hDaniel Stenberg
2001-08-15David James made it build 7.8.1 pre 5Daniel Stenberg
2001-08-14exchanged the second and third argument to fwrite(), as that makes it lookDaniel Stenberg
good on VMS. Removed a '#if 0' section, made Curl_getmyhost static and cut off the 'Curl_' prefix
2001-08-14#include <curl/mprintf.h>Daniel Stenberg
2001-08-14curl_memdebug takes a const argument nowDaniel Stenberg