diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-01-26 09:30:30 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-01-26 09:30:30 +0100 |
commit | df583434405eb564f5eb35995b7b98f268956031 (patch) | |
tree | 75b1cd0007e2d91a1125382700b3d9f1b3dd6a6a /scripts | |
parent | 782143ee818ca26d3da9133733eb97949346a88b (diff) | |
download | curl-df583434405eb564f5eb35995b7b98f268956031.tar.gz |
scripts/singleuse: add curl_easy_option*
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/singleuse.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/singleuse.pl b/scripts/singleuse.pl index e3bf44e7b..a152ffc40 100755 --- a/scripts/singleuse.pl +++ b/scripts/singleuse.pl @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2019 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 2019 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -76,6 +76,9 @@ my %api = ( 'curl_easy_strerror' => 'API', 'curl_easy_unescape' => 'API', 'curl_easy_upkeep' => 'API', + 'curl_easy_option_by_id' => 'API', + 'curl_easy_option_by_name' => 'API', + 'curl_easy_option_next' => 'API', 'curl_escape' => 'API', 'curl_formadd' => 'API', 'curl_formfree' => 'API', |