Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lib/unit tests: add missing curl_global_cleanup() calls | Daniel Stenberg | 2021-01-06 | 1 | -2/+4 |
| | |||||
* | curl.se: new home | Daniel Stenberg | 2020-11-04 | 1 | -1/+1 |
| | | | | Closes #6172 | ||||
* | tests: add missing global_init/cleanup calls | Daniel Stenberg | 2020-11-02 | 1 | -0/+2 |
| | | | | | | | Without the cleanup call in these test files, the mbedTLS backend leaks memory. Closes #6156 | ||||
* | options: API for meta-data about easy options | Daniel Stenberg | 2020-08-27 | 1 | -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 |