summaryrefslogtreecommitdiff
path: root/tests/libtest/lib1911.c
Commit message (Collapse)AuthorAgeFilesLines
* lib/unit tests: add missing curl_global_cleanup() callsDaniel Stenberg2021-01-061-2/+4
|
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* tests: add missing global_init/cleanup callsDaniel Stenberg2020-11-021-0/+2
| | | | | | | Without the cleanup call in these test files, the mbedTLS backend leaks memory. Closes #6156
* options: API for meta-data about easy optionsDaniel Stenberg2020-08-271-0/+87
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