aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)Author
2002-05-28I trimmed the --help output slightly to better fit within 80 colsDaniel Stenberg
2002-05-28Cris Bailiff's CAPATH support addedDaniel Stenberg
2002-05-21Use the new CURLOPT_NETRC option and adds --netrc-optional, by James ConeDaniel Stenberg
2002-05-10Kein Roth made --trace-ascii look even better, and make OD 0A occurancesDaniel Stenberg
get output as plain newlines.
2002-05-07Added --trace-ascii supportDaniel Stenberg
2002-05-07support for ingoring session cookies addedDaniel Stenberg
2002-05-03- Added "--trace [file]" to the command line tool. It makes a very detailedDaniel Stenberg
trace dump get stored, with a full protocol dump that includes all received and transmitted data. This could be a very effective tool for debugging what goes wrong. This dump includes every byte the way it is sent to/received from the server. The dump is the plain-text version, so SSL transfers will still be readable.
2002-05-03-D now stores all headers to the same file if multiple URLs are given on theDaniel Stenberg
command line!
2002-04-23use new timecond definesDaniel Stenberg
2002-04-08Added the --environment support by Michael CurtisDaniel Stenberg
2002-04-05if HOME isn't set or too long, we attempt to lost the curlrc file fromDaniel Stenberg
current directory instead!
2002-04-04Reverted v1.120, -G set request type after Kevin Roth pointed out theDaniel Stenberg
stupidity in doing this. -G should work with with -I too...
2002-03-27fopen(... "rb") when reading what to post, so that binary posting worksDaniel Stenberg
on Windows!
2002-03-19made -G set request typeDaniel Stenberg
2002-03-19copyright string (year) updateDaniel Stenberg
2002-03-18reverted 1.109, we can't set the request type when -d is used, as -G can beDaniel Stenberg
used and it makes it a GET...
2002-03-13removed some silly CRLF linesDaniel Stenberg
2002-03-11now -F supports 'filename=blabla' for parts that upload a file, to set theDaniel Stenberg
filename field of that part. A typical example line could look like: -F 'name=@filename;filename=/dev/null' This can be combined with type= too, in a manner similar to: -F "file=@log/test39.txt;filename=fakerfile;type=moo/foobar" Enjoy.
2002-03-08completed the progress-bar fixDaniel Stenberg
2002-03-08better treatment of the config->errors, only fclose() this if it wasDaniel Stenberg
truly fopen()ed. It could end up fclose()ing a NULL as discovered by Clifford Wolf.
2002-03-08closes bug report #527032, --progress-bar works again and it adds a newlineDaniel Stenberg
after the transfer is done properly
2002-02-28Nico Baggus added more error codes to the VMS stuff.Daniel Stenberg
2002-02-28Wesley Laxton's CURLOPT_PREQUOTE workDaniel Stenberg
2002-02-28memory debugging is now only enabled if the CURL_MEMDEBUG environmentDaniel Stenberg
variable is set when curl is invoked
2002-02-25make sure -d is treated as a POST request and thus should fail if mixedDaniel Stenberg
with -I for example
2002-01-28don't count a custom request as a request type of its own, it is merelyDaniel Stenberg
a modifier of another type
2002-01-03Changed how -I/--head works when --include is also used... Test case 104Daniel Stenberg
stopped working after the dec-20 fixes that now supports FTP operations to skip the transfer phase.
2001-12-17Götz Babin-Ebell's OpenSSL ENGINE patchDaniel Stenberg
2001-12-11when the file name given to -T is used to build an upload path, the localDaniel Stenberg
directory part is now stripped off and only the actual file name part will be used
2001-11-30fixed the option parser to not loop when a long option is specifiedDaniel Stenberg
2001-11-29--disable-epsvDaniel Stenberg
2001-11-21init the errorbuf to prevent junk from being outputDaniel Stenberg
2001-11-19Lars M Gustafsson showed us that the free(urlbuffer) was totally unnecessaryDaniel Stenberg
and plain wrong.
2001-11-05John Lask's fix that adds "-1/--TLSv1" supportDaniel Stenberg
2001-10-22An SGI (IRIX) compiler doesn't like indended #-instructions, so they're allDaniel Stenberg
in column zero now!
2001-10-09Added -0/--http1.0 to enforce HTTP 1.0 requestsDaniel Stenberg
2001-10-03Georg Huettenegger's fix that makes us no longer use curl_formparse() butDaniel Stenberg
instead entirely rely on the curl_formadd() function. The former one is subject for removal in a future release.
2001-09-26free cookiejar stringDaniel Stenberg
2001-09-11--ciphers now sets CURLOPT_SSL_CIPHER_LISTDaniel Stenberg
2001-09-07HAVE_SYS_UTIME_H adjustmentsDaniel Stenberg
2001-09-03introducing -R/--remote-time which uses the remote file's time to set theDaniel Stenberg
local file's time
2001-08-29uses the new cookie jar featureDaniel Stenberg
2001-08-24Kevin 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-19SM's fix for -G on URLs with host name onlyDaniel Stenberg
2001-08-15SM's -G patch. There's some room for improvements still, as a command lineDaniel Stenberg
like: "curl -d moo=foo -G daniel.haxx.se" currently fails.
2001-08-14(un)signed and const cleanupDaniel 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-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