aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)Author
2003-04-14new wording by Kevin RothDaniel Stenberg
2003-04-14With the recent fix of libcurl, it shall now return CURLE_SSL_CACERT whenDaniel Stenberg
it had problems withe CA cert and thus we offer a huge blurb of verbose help to explain to the poor user why this happens.
2003-03-31--location-trusted added, which does a normal location plus the newDaniel Stenberg
CURLOPT_UNRESTRICTED_AUTH option set TRUE. Patch by Guillaume Cottenceau.
2003-03-29Dan Shearer's fix from bug report #618892, which makes 'curl -O' outputDaniel Stenberg
an error message about a missing URL.
2003-03-12When we append stuff to the URL, we must make sure the text is properlyDaniel Stenberg
URL encoded before. Test case 58 added to verify this.
2003-02-28the strequal and strnequal should now be called with the proper curl_ prefixDaniel Stenberg
2003-02-03Julian Noble pointed out that capath is indeed working fine on WindowsDaniel Stenberg
these days since the c_rehash tool is written (fixed) to do the proper action even on file systems that don't support symlinks.
2003-01-30don't check for the CA cert bundle if --insecure is usedDaniel Stenberg
2003-01-30curl now uses stricter VERIFYHOST by default and only uses a lesser checkDaniel Stenberg
if --insecure is used. Reported by Hamish Mackenzie.
2003-01-29HAVE_WRITABLE_ARGV is set if argv[] is writable on the system, and thenDaniel Stenberg
we attempt to hide some of the more sensitive command line arguments
2003-01-16copyright year update in the source headerDaniel Stenberg
2003-01-08mkdir() fix for win32Daniel Stenberg
2003-01-07fixed the create_dir_hierarchy() to not use uninited memory, as noticed byDaniel Stenberg
Matthew Blain.
2002-12-05better errno include and no externDaniel Stenberg
2002-12-05Solaris needs errno as an extern int.Daniel Stenberg
2002-12-03missing }Daniel Stenberg
2002-12-03don't officially use -@ for --create-dirs, only use the long formDaniel Stenberg
2002-12-03Nicolas Berloquin's fix of his previous dir creation patchDaniel Stenberg
2002-12-02Nicolas Berloquin's added code for dealing with -@/--create-dirs to createDaniel Stenberg
the necessary directories as specified with -o.
2002-11-26removed extra space from trace output 'Send data'Daniel Stenberg
2002-11-15fflush() the trace stream on each callDaniel Stenberg
2002-10-28Kevin Roth's patch that checks for the CA cert file at two more places if theDaniel Stenberg
--cacert option is not used. 1. An environment variable named CURL_CA_BUNDLE may contain the full file name to the file. 2. On Windows, the cert file may be named curl-ca-bundle.crt and put in the same dir as curl is located (or the CWD) and curl will then use that file instead.
2002-10-11fix bad free() that caused segfaultDaniel Stenberg
2002-09-23fix resume when multiple files were specifiedDaniel Stenberg
2002-09-04Sven Neuhaus made --silent being acknowledged even when multiple URLsDaniel Stenberg
were used
2002-09-03updated source code boilerplate/headerDaniel Stenberg
2002-09-02James Gallagher's Content-Encoding workDaniel Stenberg
2002-08-30CURLE_SSL_INSECURE is removed again and so is CURLOPT_SSL_INSECURE, weDaniel Stenberg
proceed fine with the already existing options, just having a different internal library default for capath.
2002-08-30SOCKS5 support added (contributed by a still unnamed person). Not properlyDaniel Stenberg
working for "IPv6 enabled" libcurls yet, but should be pretty easy for someone to adjust.
2002-08-26SSL_INSECURE support and usage addedDaniel Stenberg
2002-08-26Andrew Francis removed the need for/use of MSVC pragmasDaniel Stenberg
2002-08-26don't close stdin, close the actual file handle we have!Daniel Stenberg
Keith MacDonald found it.
2002-08-13mr Hartroth correctly pointed out that poll() isn't really that portableDaniel Stenberg
so we need to hack around it when not there
2002-08-05support blank arguments to options, each option should check for blankDaniel Stenberg
ones themselves if they need to prevent this.
2002-06-15removed extra / in help textDaniel Stenberg
2002-06-15Added --limit-rateDaniel Stenberg
2002-06-11cut up the string in more pieces for <512 bytes stringsDaniel Stenberg
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!