| curl_options {curl} | R Documentation |
curl_version() shows the versions of libcurl, libssl and zlib and
supported protocols. curl_options() lists all options available in
the current version of libcurl. The dataset curl_symbols lists all
symbols (including options) provides more information about the symbols,
including when support was added/removed from libcurl.
curl_options(filter = "") curl_version() curl_symbols
filter |
string: only return options with string in name |
A data frame with columns:
Symbol name
Versions of libcurl
Integer value of symbol
If an option, the type of value it needs
# Available options
curl_options()
# List proxy options
curl_options("proxy")
# Sybol table
head(curl_symbols)
# Curl/ssl version info
curl_version()