summaryrefslogtreecommitdiff
path: root/lib/optiontable.pl
Commit message (Collapse)AuthorAgeFilesLines
* easyoptions: add the two new PRE* optionsDaniel Stenberg2021-09-291-1/+1
| | | | | | | | | | Follow-up to a517378de58358a Also fix optiontable.pl to do the correct remainder on the entry. Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/a517378de58358a85b7cfe9efecb56051268f629#commitcomment-57224830 Closes #7791
* copyrights: update copyright year rangesDaniel Stenberg2021-09-081-1/+1
|
* scripts: invoke interpreters through /usr/bin/enva13460542021-08-231-1/+1
| | | | Closes #7602
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* lib: fix -Wassign-enum warningsDaniel Stenberg2020-09-081-1/+1
| | | | | | | | | | configure --enable-debug now enables -Wassign-enum with clang, identifying several enum "abuses" also fixed. Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/879007f8118771f4896334731aaca5850a154675#commitcomment-42087553 Closes #5929
* optiontable: use DEBUGBUILDDaniel Stenberg2020-09-011-1/+1
| | | | Follow-up to commit 6e18568ba38 (#5877)
* options: API for meta-data about easy optionsDaniel Stenberg2020-08-271-0/+118
const struct curl_easyoption *curl_easy_option_by_name(const char *name); const struct curl_easyoption *curl_easy_option_by_id (CURLoption id); const struct curl_easyoption * curl_easy_option_next(const struct curl_easyoption *prev); The purpose is to provide detailed enough information to allow for example libcurl bindings to get option information at run-time about what easy options that exist and what arguments they expect. Assisted-by: Jeroen Ooms Closes #5365