aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)Author
2004-04-07renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_*Daniel Stenberg
concept, and added lib/README.curlx to explain details about it
2004-04-07Use curl_off_t for the limit rate values to support REALLY huge values onDaniel Stenberg
such platforms that support large files.
2004-04-06improved --limit-rate functionality, partly by the new use of curlx_tvnow()Daniel Stenberg
2004-03-29Gisle Vanem's djgpp/MS-DOS updatesDaniel Stenberg
2004-03-25tcp-nodelay patch by Joe HalpinDaniel Stenberg
2004-03-17Günter Knauf's NetWare changes.Daniel Stenberg
2004-03-17nonsense comments removedDaniel Stenberg
2004-03-12David Byron's fix to clear outs.filenameDaniel Stenberg
2004-03-08fread() returns a size_tDaniel Stenberg
2004-03-08variable type fixesDaniel Stenberg
2004-03-03David Byron's work on making libcurl only require winsock 1.1 on WindowsDaniel Stenberg
machines.
2004-03-02CURLOPT_MUTE is obsolete since a long while, we don't need to set it!Daniel Stenberg
2004-03-01check for CURL_VERSION_LARGEFILE in the feature bitmaskDaniel Stenberg
2004-03-01Use the z-option to printf %d for size_t printf. z is supported by theDaniel Stenberg
libcurl *printf and by Linux printf(). This should make the code work nicely even for 64bit size_ts.
2004-02-26David Byron's fixes to make the latest curl build fine under MSVC 6.Daniel Stenberg
2004-02-21David Byron's fix to allow the speed-limit logic work even if you setDaniel Stenberg
limit-rate. It does work on the expense of the rate limiter.
2004-02-19Use the strtoofft.h header file from the lib directory, as we are nowDaniel Stenberg
officially using library-code when building the app (at least for the platforms that don't have a strtoll() on their own).
2004-02-17fix the help text for --manual if built without manualDaniel Stenberg
2004-02-12support configure --disable-manualDaniel Stenberg
2004-02-09Make param2text() take an int argument, as that is what's being passed in.Daniel Stenberg
This is made to prevent compiler warnings.
2004-01-30Added --socksDaniel Stenberg
2004-01-29use hugehelp.h to silence picky compiler warningsDaniel Stenberg
2004-01-28Gisle has eyes, I don'tDaniel Stenberg
2004-01-27don't advance the line pointer if it already points to the null terminatorDaniel Stenberg
2004-01-26Removed two redundant #include files in the djgpp section. They're alreadyDaniel Stenberg
included. (a Dan Fandrich fix)
2004-01-23Use Curl_strtoll() if needed. This is not a library call, this is just theDaniel Stenberg
same code as the library uses for its internal function. Thus the captical C in the beginning.
2004-01-22use curl_off_t instead of off_tDaniel Stenberg
2004-01-19David Byron cleaned up how --trace with no option was treated, and alsoDaniel Stenberg
arguments in a config file without a required parameter!
2004-01-16Gisle Vanem's patch for variables that "might be used uninitialized"Daniel Stenberg
2004-01-15spell-fixed a commentDaniel Stenberg
now errors out if built with off_t > 32 bits but without strtoll()
2004-01-14Gisle Vanem updated the code for win32 and djgpp builds.Daniel Stenberg
2004-01-13Diego Casorran's fixes to allow native AmigaOS buildsDaniel Stenberg
2004-01-07updated year in the copyright stringDaniel Stenberg
2004-01-05David J Meyer's large file support.Daniel Stenberg
2003-12-03Marty Kuhrt moved most of the VMS stuff to a separate header file.Daniel Stenberg
2003-12-02--ftp-pasv now overrides a previous --ftpport option. We now also supportDaniel Stenberg
it named "--ftp-port" as the additional dash between the words is used in several other options and this makes it more consistant.
2003-11-24--ftp-ssl support addedDaniel Stenberg
2003-11-19unconditional progressbarinit cures a windows crashDaniel Stenberg
2003-11-13Gisle Vanem added a flush to make the progress-bar look better on windowsDaniel Stenberg
(at least).
2003-11-07do a normal free() of the homedir nowDaniel Stenberg
2003-11-07Based on Gisle Vanem's $HOME patch, we now attempt to find the home dirDaniel Stenberg
in a slightly better way for more platforms. The $HOME is only used for .curlrc atm, but the possible upcoming change of .netrc treatment may also need the home dir.
2003-11-06don't allow options that we KNOW can't be usedDaniel Stenberg
2003-10-31removed compiler warnings from my latest fixDaniel Stenberg
2003-10-31Added a new parse-numeric-parameters function so that options that takeDaniel Stenberg
a numeric argument can better bail out if given a weird parameter. This catches situations such as "-y -Y 2000" or "-O -C [URL]" etc.
2003-10-30more help text cleanupsDaniel Stenberg
2003-10-29cleaned up the --help output. Tried to unify the language. Shortened a bunchDaniel Stenberg
of explanations.
2003-10-28possibly uninitialized variableDaniel Stenberg
2003-10-24free all memory on failure before bailing out, not really necessary butDaniel Stenberg
my upcoming automated test gets crazy if not
2003-10-23Georg Horn's patch. -k is no longer mutually exclusive with --cacert andDaniel Stenberg
--capath. Using -k together with one of those just means that the result of the CA cert check is ignored (but displayed if -v is used).
2003-10-22make --disable-eprt work, based on Gisle Vanem's patchDaniel Stenberg