curl_easy_option_by_next()
an application can iterate over all the known options and return a pointer to a struct curl_easyoption
for them.struct curl_easyoption
for it. The name should be provided without the CURLOPT_
prefix.CURLOPT_VERBOSE
option like this:struct curl_easyoption
for it. The "ID" is the CURLOPT_
-prefixed symbol as provided in the public curl/curl.h
header file.CURLOPT_VERBOSE
option like this:curl_easyoption
structCURLOT_FLAG_ALIAS
is set, it means that that option is an "alias". A name provided for backwards compatibility that is nowadays rather served by an option with another name. If you lookup the ID for an alias, you will get the new canonical name for that option.