summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <PromyLOPh@gmail.com>2008-06-16 11:38:19 +0200
committerLars-Dominik Braun <PromyLOPh@gmail.com>2008-06-16 11:38:19 +0200
commit5708e1a023c349af53383d8bfe52e2af65c597bc (patch)
treee09b659c08674808345cb36b0cf42f8f9d222d98 /src/settings.h
parent852e19a64893fe3109a42719782c3099ec6ce3d5 (diff)
downloadpianobar-5708e1a023c349af53383d8bfe52e2af65c597bc.tar.gz
pianobar-5708e1a023c349af53383d8bfe52e2af65c597bc.tar.bz2
pianobar-5708e1a023c349af53383d8bfe52e2af65c597bc.zip
client: Proxy type config option added
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h
index 26ca527..15b5396 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -23,10 +23,13 @@ THE SOFTWARE.
#ifndef _SETTINGS_H
#define _SETTINGS_H
+#include <curl/curl.h>
+
struct BarSettings {
char *username;
char *password;
char *controlProxy; /* non-american listeners need this */
+ curl_proxytype controlProxyType;
};
typedef struct BarSettings BarSettings_t;