aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
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
2001-08-14minor fixes for compiler warningsDaniel Stenberg
2001-08-14Curl_open() only take one argument now,Daniel Stenberg
Curl_ldap_done() and Curl_dict_done() were removed, compiler warnings corrected
2001-08-14const and (un)signed fixesDaniel Stenberg
2001-08-14const and unsigned/signed fixesDaniel Stenberg
2001-08-14removed the use of the global array for the password that was necessaryDaniel Stenberg
for OpenSSL versions prior to 0.9.4, this is conditional and should still work with older versions.
2001-08-14size_t and constDaniel Stenberg
2001-08-14cleaned up some of the size_t and const messDaniel Stenberg
2001-08-14removed unused code, added constDaniel Stenberg
2001-08-14cleaned up some picky compiler warnings and indented the code curl styleDaniel Stenberg
2001-08-14added const char * => char * typecastDaniel Stenberg
2001-08-14const-ified lots of function argumentsDaniel Stenberg
2001-08-14const-ified the code, removed Curl_ldap_done()Daniel Stenberg
2001-08-14fixed picky compiler warnings, unused arguments, const at proper places andDaniel Stenberg
I also indented the source code to fit curl "standard"
2001-08-14Curl_httpchunk_read now takes size_t size arguments instead of the previousDaniel Stenberg
ssize_t
2001-08-14made some char * into const char * and I removed the check for size > 0Daniel Stenberg
in the add_buffer function.
2001-08-14added const to the prompt char * in the protoDaniel Stenberg
2001-08-14added typecast when converting const char * to char *Daniel Stenberg
2001-08-14added const to the function protosDaniel Stenberg
2001-08-14Curl_ftpsendf's third argument is now a const char *Daniel Stenberg
2001-08-14corrected the size_t weirdness. Expect size_t to be unsigned. Moved mostDaniel Stenberg
over to ssize_t that is signed. Removed all the special-purpose VMS #ifdefs that were added for this.
2001-08-14added a few consts and a few typecasts to please picky compiler optionsDaniel Stenberg
2001-08-14size_t => ssize_t, removed the special VMS fix for that purposeDaniel Stenberg
2001-08-14added typecasts when converting from unsigned int to intDaniel Stenberg
2001-08-14Added an empty win32_cleanup for non-windows systems to prevent compilerDaniel Stenberg
warnings, changed the Curl_open() call as the second argument was never used anyway
2001-08-14removed the *done() function as it served no purpose, added type casts whenDaniel Stenberg
converting from 'const char *' to 'char *' to please my picky compiler options
2001-08-14commented out empty else blocks to shut up pedantic compilersDaniel Stenberg
2001-08-14Added 'const' to the string arraysDaniel Stenberg
2001-08-14corrected dubious use of the same variable twice in a function call,Daniel Stenberg
gcc 3.0 warned about it
2001-08-13curl_formparse() should no longer have any size-limit in the data sectionDaniel Stenberg
after this patch from Peter Todd
2001-08-10corrected minor source indentation errorDaniel Stenberg
2001-08-10moved the download/upload speed calculations, to be made on every invokeDaniel Stenberg
of the progressupdate, as on very quick transfers they wouldn't always get calculated!
2001-08-09Fixed bugs for building debug and SSL lib in VC makefilesm
2001-08-09Added $Id:$ string for file version in the headerDaniel Stenberg
2001-08-08Patrick Bihan-Faou introduced CURLOPT_SSL_VERIFYHOST and code to deal withDaniel Stenberg
it.
2001-08-06Nico's fixes for VMS, most of these are fixes for bad uses of size_t thatDaniel Stenberg
forgets that it is very often unsigned. These should be fixed globally and then many #ifdef VMS lines can be removed.
2001-08-06Curl_FormFree renamed to Curl_formclean, as it turns out VMS for exampleDaniel Stenberg
requires all global symbols to be *case insentively* unique! curl_formfree is a global function we shouldn't touch.
2001-08-06adjusted for VMSDaniel Stenberg
2001-08-06Nico's VMS fixesDaniel Stenberg
2001-08-06Nico's VMS adjustmentDaniel Stenberg
2001-08-06VMS adjustments. The IOCTL_3_ARGS #define used now should be moved to becomeDaniel Stenberg
a configure checked one.
2001-08-06Nico Baggus made it work and compile under VMS!Daniel Stenberg
2001-08-06Nico Baggus' VMS adjustmentsDaniel Stenberg
2001-08-06VMS #ifdefs added. several related to size_t problems that we must addressDaniel Stenberg
globally anyway... check these as soon as the size_t fixes are in place
2001-08-06made this whole file #ifdef WIN32Daniel Stenberg
2001-08-06VMS #include fixes,Daniel Stenberg
file:// URL treatment improvements
2001-08-06 Jonathan Hseu noticed that you couldn't get a header callback unless youDaniel Stenberg
set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that data. This is now fixed.
2001-08-06corrected the comment for CURLOPT_WRITEHEADER in setopt(), and made itDaniel Stenberg
read a void * and not a FILE *, as that was how it used to work and not anymore...