summaryrefslogtreecommitdiff
path: root/src/tool_sdecls.h
Commit message (Collapse)AuthorAgeFilesLines
* mime: use in curl cli tool instead of form API.Patrick Monnerat2017-09-021-2/+2
| | | | | | Extended -F option syntax to support multipart mail messages. -F keyword headers= added to include custom headers in parts. Documentation upgraded.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* tool_sdecls.h: Fixed compilation warning from commit 4a889441d3Steve Holme2015-09-021-1/+1
| | | | tool_sdecls.h:139 warning: comma at end of enumerator list
* curl: point out the conflicting HTTP methods if usedDaniel Stenberg2015-08-251-4/+2
| | | | | | It isn't always clear to the user which options that cause the HTTP methods to conflict so by spelling them out it should hopefully be easier to understand why curl complains.
* tool_cfgable: Renamed Configurable structure to OperationConfigSteve Holme2014-02-231-6/+6
| | | | | To allow for the addition of a global config structure and prevent confusion between the two.
* Include metalink/metalink.h for libmetalink functionsTatsuhiro Tsujikawa2012-07-021-1/+1
|
* curl: Made --metalink option toggle Metalink functionalityTatsuhiro Tsujikawa2012-06-211-1/+9
| | | | | | | | | | | | | | | | | | | | | | | In this change, --metalink option no longer takes argument. If it is specified, given URIs are processed as Metalink XML file. If given URIs are remote (e.g., http URI), curl downloads it first. Regardless URI is local file (e.g., file URI scheme) or remote, Metalink XML file is not written to local file system and the received data is fed into Metalink XML parser directly. This means with --metalink option, filename related options like -O and -o are ignored. Usage examples: $ curl --metalink http://example.org/foo.metalink This will download foo.metalink and parse it and then download the URI described there. $ curl --metalink file://foo.metalink This will parse local file foo.metalink and then download the URI described there.
* Fixes allowing HTTP test cases 1338, 1339, 1368 and 1369 to succeedYang Tse2012-06-071-0/+4
|
* Format GETOUT_METALINK nicelyTatsuhiro Tsujikawa2012-05-261-1/+1
|
* Applied patches from DanielTatsuhiro Tsujikawa2012-05-261-3/+0
|
* Support Metalink.Tatsuhiro Tsujikawa2012-05-261-0/+3
| | | | | | | | | | This change adds experimental Metalink support to curl. To enable Metalink support, run configure with --with-libmetalink. To feed Metalink file to curl, use --metalink option like this: $ curl -O --metalink foo.metalink We use libmetalink to parse Metalink files.
* curl tool: use configuration files from lib directoryYang Tse2012-04-061-2/+2
| | | | | | | | | | | Configuration files such as curl_config.h and all config-*.h no longer exist nor are generated/copied into 'src' directory, now these only exist in 'lib' directory from where curl tool sources uses them. Additionally old src/setup.h has been refactored into src/tool_setup.h which now pulls lib/setup.h The possibility of a makefile needing an include path adjustment exists.
* curl tool: fix some more OOM handlingYang Tse2011-09-301-11/+27
|
* curl tool: fix some OOM handling issuesYang Tse2011-09-241-3/+0
|
* curl tool: reviewed code moved to tool_*.[ch] filesYang Tse2011-09-201-0/+128
Overhauled FindWin32CACert()