aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)Author
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-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-08Patrick Bihan-Faou's verifyhost additionDaniel Stenberg
2001-08-06Nico's VMS fixes addedDaniel Stenberg
2001-07-12Add win32 initialization support to curl_global_init() andSterling Hughes
curl_global_cleanup(). Update corresponding man pages... Improve the logic in curl_global_cleanup() and curl_global_init() so that they are not called twice if the application libraries have been initialized and make sure to reset the init flags in curl_global_cleanup().
2001-06-25'resume from'-fix. When using "-C -" and doing multiple file download, theDaniel Stenberg
first resume was used on all files instead of being reset between each file. As found by Björn Stenberg.
2001-05-30now uses CURL_GLOBAL_DEFAULTDaniel Stenberg
2001-05-29fixed the -# to write to the same as --stderr is set toDaniel Stenberg
2001-05-28adjusted the global_init() call to pass the new flag argument tooDaniel Stenberg
2001-05-28added calls to curl_global_*, they aren't really needed for this applicationDaniel Stenberg
but it shows good manner to always cleanup
2001-05-04'FILE *' changed to 'void *' in all callback functionsDaniel Stenberg
2001-04-18added an include to build on ultrixDaniel Stenberg
2001-03-16removed the CURL_SEPARATORS defineDaniel Stenberg
2001-03-15Added --connect-timeout supportDaniel Stenberg
2001-03-14no longer includes the curl/types.h and curl/easy.h include filesDaniel Stenberg
explicitly, as they're taken care of indirectly by curl/curl.h these days.
2001-03-12added --random-file and --egd-file to the command line clientDaniel Stenberg
2001-03-12moved the libcurl init callDaniel Stenberg
2001-03-12split up the big printf() into several ones to never use strings longerDaniel Stenberg
than 509 letters (as newer gcc warns on with -Wall)
2001-02-20multiple connection support initial commitDaniel Stenberg
2001-01-29The PUT stuff is never set! It is set with the UPLOAD...Daniel Stenberg
2001-01-24Ingo Ralf Blum's cygwin fixesDaniel Stenberg
2001-01-22Removed the deprecated -c and -t from the --help output.Daniel Stenberg
2001-01-19corrected url memory handling with --globoffDaniel Stenberg
2001-01-11Added -g, fixed so that short options worked again. My last "merged" fix didDaniel Stenberg
screw a few things up.
2001-01-10made "short options" possible to specify -m20 as well as -m 200.Daniel Stenberg
2001-01-09bugfix for when more -o than URLs is usedDaniel Stenberg
2001-01-08better cleanup when existing due to bad usageDaniel Stenberg
2001-01-08corrected the separator when using URL globbingDaniel Stenberg
2001-01-08Multiple URL support addedDaniel Stenberg
2001-01-05Internal symbols that aren't static are now prefixed with 'Curl_'Daniel Stenberg
2001-01-03dual-license fixDaniel Stenberg
2000-12-12fixed a strdup(NULL) errorDaniel Stenberg
2000-12-12Francois Petitjean's solaris core dump fixDaniel Stenberg
2000-12-06urlglob fix to prevent crashing when -o path is longer than urlDaniel Stenberg
2000-12-04Jörn fixed a multiple URL output bugDaniel Stenberg
2000-11-28Added max-redirs support (James Griffiths' patch)Daniel Stenberg
2000-11-27modified the --help output to have the passwords within [brackets] as theyDaniel Stenberg
are optional...
2000-11-22Added cacert and filetime supportDaniel Stenberg
2000-11-21removed the twice free_config_all() callsDaniel Stenberg
made the big config struct local (big . => -> replace)
2000-11-21removed pedantic compiler warningsDaniel Stenberg
2000-11-20no more "leaked" memory when this fails on various kinds of bad usageDaniel Stenberg
2000-11-17fixed strdup() of a NULL pointerDaniel Stenberg
2000-11-17memory leak cleanup campaignDaniel Stenberg
2000-11-17allows \r \n \t \v in config file parameters within quotesDaniel Stenberg
2000-11-17major config file hack, now works a lot better and slightly differentDaniel Stenberg
Added --url to allow URLs to be specified in the config file that way
2000-11-15fixed crash in config file parserDaniel Stenberg
2000-11-13removed the check that prevents -T and -o beinged used simultaneously!Daniel Stenberg
2000-11-09haxx.nu => haxx.seDaniel Stenberg
2000-10-26Kevin Roth's bugreport with config files containing '-v defaulturl' is nowDaniel Stenberg
fixed
2000-10-26Kevin P Roth's idea of supporting multiple -d options was turned into realityDaniel Stenberg