Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-02-28 | Nico Baggus added more error codes to the VMS stuff. | Daniel Stenberg | |
2002-02-28 | Wesley Laxton's CURLOPT_PREQUOTE work | Daniel Stenberg | |
2002-02-28 | memory debugging is now only enabled if the CURL_MEMDEBUG environment | Daniel Stenberg | |
variable is set when curl is invoked | |||
2002-02-25 | make sure -d is treated as a POST request and thus should fail if mixed | Daniel Stenberg | |
with -I for example | |||
2002-01-28 | don't count a custom request as a request type of its own, it is merely | Daniel Stenberg | |
a modifier of another type | |||
2002-01-03 | Changed how -I/--head works when --include is also used... Test case 104 | Daniel Stenberg | |
stopped working after the dec-20 fixes that now supports FTP operations to skip the transfer phase. | |||
2001-12-17 | Götz Babin-Ebell's OpenSSL ENGINE patch | Daniel Stenberg | |
2001-12-11 | when the file name given to -T is used to build an upload path, the local | Daniel Stenberg | |
directory part is now stripped off and only the actual file name part will be used | |||
2001-11-30 | fixed the option parser to not loop when a long option is specified | Daniel Stenberg | |
2001-11-29 | --disable-epsv | Daniel Stenberg | |
2001-11-21 | init the errorbuf to prevent junk from being output | Daniel Stenberg | |
2001-11-19 | Lars M Gustafsson showed us that the free(urlbuffer) was totally unnecessary | Daniel Stenberg | |
and plain wrong. | |||
2001-11-05 | John Lask's fix that adds "-1/--TLSv1" support | Daniel Stenberg | |
2001-10-22 | An SGI (IRIX) compiler doesn't like indended #-instructions, so they're all | Daniel Stenberg | |
in column zero now! | |||
2001-10-09 | Added -0/--http1.0 to enforce HTTP 1.0 requests | Daniel Stenberg | |
2001-10-03 | Georg Huettenegger's fix that makes us no longer use curl_formparse() but | Daniel Stenberg | |
instead entirely rely on the curl_formadd() function. The former one is subject for removal in a future release. | |||
2001-09-26 | free cookiejar string | Daniel Stenberg | |
2001-09-11 | --ciphers now sets CURLOPT_SSL_CIPHER_LIST | Daniel Stenberg | |
2001-09-07 | HAVE_SYS_UTIME_H adjustments | Daniel Stenberg | |
2001-09-03 | introducing -R/--remote-time which uses the remote file's time to set the | Daniel Stenberg | |
local file's time | |||
2001-08-29 | uses the new cookie jar feature | Daniel Stenberg | |
2001-08-24 | Kevin Roth's comments about -G have been addressed: | Daniel Stenberg | |
o -G -I works on the same command line and makes HEAD instead of GET o -G with an already present question mark in the URL makes an ampersand get added as a separator instead | |||
2001-08-19 | SM's fix for -G on URLs with host name only | Daniel Stenberg | |
2001-08-15 | SM's -G patch. There's some room for improvements still, as a command line | Daniel Stenberg | |
like: "curl -d moo=foo -G daniel.haxx.se" currently fails. | |||
2001-08-14 | (un)signed and const cleanup | Daniel Stenberg | |
2001-08-09 | The 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-08 | The file name given to -E can now contain drive letters on windows, if they | Daniel 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-08 | Patrick Bihan-Faou's verifyhost addition | Daniel Stenberg | |
2001-08-06 | Nico's VMS fixes added | Daniel Stenberg | |
2001-07-12 | Add win32 initialization support to curl_global_init() and | Sterling 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, the | Daniel Stenberg | |
first resume was used on all files instead of being reset between each file. As found by Björn Stenberg. | |||
2001-05-30 | now uses CURL_GLOBAL_DEFAULT | Daniel Stenberg | |
2001-05-29 | fixed the -# to write to the same as --stderr is set to | Daniel Stenberg | |
2001-05-28 | adjusted the global_init() call to pass the new flag argument too | Daniel Stenberg | |
2001-05-28 | added calls to curl_global_*, they aren't really needed for this application | Daniel Stenberg | |
but it shows good manner to always cleanup | |||
2001-05-04 | 'FILE *' changed to 'void *' in all callback functions | Daniel Stenberg | |
2001-04-18 | added an include to build on ultrix | Daniel Stenberg | |
2001-03-16 | removed the CURL_SEPARATORS define | Daniel Stenberg | |
2001-03-15 | Added --connect-timeout support | Daniel Stenberg | |
2001-03-14 | no longer includes the curl/types.h and curl/easy.h include files | Daniel Stenberg | |
explicitly, as they're taken care of indirectly by curl/curl.h these days. | |||
2001-03-12 | added --random-file and --egd-file to the command line client | Daniel Stenberg | |
2001-03-12 | moved the libcurl init call | Daniel Stenberg | |
2001-03-12 | split up the big printf() into several ones to never use strings longer | Daniel Stenberg | |
than 509 letters (as newer gcc warns on with -Wall) | |||
2001-02-20 | multiple connection support initial commit | Daniel Stenberg | |
2001-01-29 | The PUT stuff is never set! It is set with the UPLOAD... | Daniel Stenberg | |
2001-01-24 | Ingo Ralf Blum's cygwin fixes | Daniel Stenberg | |
2001-01-22 | Removed the deprecated -c and -t from the --help output. | Daniel Stenberg | |
2001-01-19 | corrected url memory handling with --globoff | Daniel Stenberg | |
2001-01-11 | Added -g, fixed so that short options worked again. My last "merged" fix did | Daniel Stenberg | |
screw a few things up. | |||
2001-01-10 | made "short options" possible to specify -m20 as well as -m 200. | Daniel Stenberg | |