aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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 CURLOPT_HTTPGET and CURLOPT_SSL_VERIFYHOST, added notes to the twoDaniel Stenberg
timeout-options that they don't work in multi-threaded programs.
2001-08-09non-blocking connect pleaseDaniel Stenberg
2001-08-09strip off user-agent before checking protocolDaniel Stenberg
2001-08-09The redirected error stream was closed before curl_easy_cleanup() was made,Daniel Stenberg
and when VERBOSE was enabled, that used the stream. Also, the stream was closed even if we looped to get more files. Corrects Dustin Boswell's bug report #441610
2001-08-09removied $Id:$ again, this is treated as a binary file and then that fieldDaniel Stenberg
isn't updated! :-O
2001-08-09Added $Id:$ to the headerDaniel Stenberg
2001-08-09Added $Id:$ string for file version in the headerDaniel Stenberg
2001-08-08when a test expects an error code but gets a different one, we now outputDaniel Stenberg
both of them
2001-08-08Nico's notes about porting to VMSDaniel Stenberg
2001-08-08test cases, verifyhost, curl -EDaniel Stenberg
2001-08-08added unfortunate but necessary special-purpose files for VMS and RISC OSDaniel Stenberg
2001-08-08The file name given to -E can now contain drive letters on windows, if theyDaniel Stenberg
start the file name as in 'X:\' where X is any letter. The colon otherwise normally separate the file name from the password.
2001-08-08credit where credit is due, added a bunch of recent contributorsDaniel Stenberg
2001-08-08Patrick Bihan-Faou introduced CURLOPT_SSL_VERIFYHOST and code to deal withDaniel Stenberg
it.
2001-08-08Patrick Bihan-Faou's verifyhost additionDaniel Stenberg
2001-08-08config.h file for RISC OS compilesDaniel Stenberg
2001-08-08script to build curl on VMSDaniel Stenberg
2001-08-07replacing FILE * with common file descriptors?Daniel Stenberg
2001-08-07language correctionDaniel Stenberg
2001-08-07added Rick Jones's more polite wording of 1.7, makes it better and friendlierDaniel Stenberg
2001-08-07nine new test casesDaniel Stenberg
2001-08-07added "1.7 What about CURL from curl.com?"Daniel Stenberg
2001-08-07test 202 - two file:// URLs in one command lineDaniel Stenberg