diff options
author | Max Kellermann <max@duempel.org> | 2015-06-26 08:06:35 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-06-26 08:06:40 +0200 |
commit | df03a7b3f82a5ab97d54c64ef249fe98782e199c (patch) | |
tree | fcfb326edb26334439764e2245cd21f7955a2c52 | |
parent | ac038711740fdc1ec7871058910cb97ecacb5ae4 (diff) |
config/Templates: mark http_proxy_* deprecated
-rw-r--r-- | src/config/ConfigTemplates.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config/ConfigTemplates.cxx b/src/config/ConfigTemplates.cxx index b5f0c3e93..cd353dc19 100644 --- a/src/config/ConfigTemplates.cxx +++ b/src/config/ConfigTemplates.cxx @@ -54,10 +54,10 @@ const ConfigTemplate config_param_templates[] = { { "samplerate_converter" }, { "audio_buffer_size" }, { "buffer_before_play" }, - { "http_proxy_host" }, - { "http_proxy_port" }, - { "http_proxy_user" }, - { "http_proxy_password" }, + { "http_proxy_host", false, true }, + { "http_proxy_port", false, true }, + { "http_proxy_user", false, true }, + { "http_proxy_password", false, true }, { "connection_timeout" }, { "max_connections" }, { "max_playlist_length" }, |