summaryrefslogtreecommitdiff
path: root/src/tool_easysrc.h
Commit message (Collapse)AuthorAgeFilesLines
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* tool: Generate easysrc with last cache linked-listDaniel Hwang2015-10-181-8/+9
| | | | | | | | | | Using a last cache linked-list improves the performance of easysrc generation. Bug: https://github.com/bagder/curl/issues/444 Ref: https://github.com/bagder/curl/issues/429 Closes #452
* tool: Moved --libcurl to the global configSteve Holme2014-03-011-1/+2
|
* tool_cfgable: Renamed Configurable structure to OperationConfigSteve Holme2014-02-231-2/+2
| | | | | To allow for the addition of a global config structure and prevent confusion between the two.
* curl tool: use configuration files from lib directoryYang Tse2012-04-061-1/+1
| | | | | | | | | | | 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.
* Generate lists and use symbols in --libcurl code output.Colin Hogben2012-02-231-4/+14
| | | | | | | | | | | This patch improves the output of curl's --libcurl option by generating code which builds curl_httppost and curl_slist lists, and uses symbolic names for enum and flag values. Variants of the my_setopt macro in tool_setopt.h are added in order to pass extra type information to the code-generation step in tool_setopt.c. If curl is configured with --disable-libcurl-option then the macros call curl_easy_setopt directly.
* configure: add option disable --libcurl outputColin Hogben2012-02-131-1/+4
|
* curl tool: code moved to tool_*.[ch] filesYang Tse2011-10-051-0/+1
|
* curl tool: reviewed code moved to tool_*.[ch] filesYang Tse2011-09-211-0/+33
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues.