aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputStream_http.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-11-05 05:11:23 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-11-05 05:11:23 +0000
commitc104801a67b298ac999b72f9fc671d78f0504f4d (patch)
tree0d412eaf751702b41738f281fc3396d30986f7c9 /src/inputStream_http.c
parentd06ca1dbdaa996d04edaa8d38f1dfde8ac253a91 (diff)
downloadmpd-c104801a67b298ac999b72f9fc671d78f0504f4d.tar.gz
mpd-c104801a67b298ac999b72f9fc671d78f0504f4d.tar.xz
mpd-c104801a67b298ac999b72f9fc671d78f0504f4d.zip
not too smart shank, forgetting to set default buffer sizes in inputStream_http
git-svn-id: https://svn.musicpd.org/mpd/trunk@2513 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputStream_http.c')
-rw-r--r--src/inputStream_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index 2641887fd..f441bf14f 100644
--- a/src/inputStream_http.c
+++ b/src/inputStream_http.c
@@ -51,8 +51,8 @@ static char * proxyHost = NULL;
static int proxyPort = 0;
static char * proxyUser = NULL;
static char * proxyPassword = NULL;
-static int bufferSize;
-static int prebufferSize;
+static int bufferSize = HTTP_BUFFER_SIZE_DEFAULT;
+static int prebufferSize = HTTP_PREBUFFER_SIZE_DEFAULT;
typedef struct _InputStreemHTTPData {
char * host;