session.settings.list
Lists all the session settings and their values. If you're only interested in
one or few of the settings, pass them as keys
and the returned list will be
filtered. Omitting the keys
array will return all settings.
Refer to the libtorrent documentation for detailed information for each setting.
Request
{
// Optional - will only return the settings that matches these keys.
"keys": [
"anonymous_mode",
"proxy_port"
]
}
Response
{
"settings": {
"anonymous_mode": false,
"proxy_port": 1080
}
}