diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2005-04-27 15:54:26 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2005-04-27 15:54:26 +0000 |
commit | ead82e4d5ab80f466bca2dc0c5406d2b56cf00bd (patch) | |
tree | 6716a31e851fe5bd162a9743ea9af632926e4f23 /src/interface.c | |
parent | c58d2a2e0b561409ab76b5f1713028d531a95d5b (diff) | |
download | mpd-ead82e4d5ab80f466bca2dc0c5406d2b56cf00bd.tar.gz mpd-ead82e4d5ab80f466bca2dc0c5406d2b56cf00bd.tar.xz mpd-ead82e4d5ab80f466bca2dc0c5406d2b56cf00bd.zip |
change the default max_output_buffer_size from 2048 to 8192
git-svn-id: https://svn.musicpd.org/mpd/trunk@3226 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/interface.c')
-rw-r--r-- | src/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interface.c b/src/interface.c index 464e1503d..e7be3a71d 100644 --- a/src/interface.c +++ b/src/interface.c @@ -51,7 +51,7 @@ #define INTERFACE_TIMEOUT_DEFAULT (60) #define INTERFACE_MAX_CONNECTIONS_DEFAULT (10) #define INTERFACE_MAX_COMMAND_LIST_DEFAULT (2048*1024) -#define INTERFACE_MAX_OUTPUT_BUFFER_SIZE_DEFAULT (2048*1024) +#define INTERFACE_MAX_OUTPUT_BUFFER_SIZE_DEFAULT (8192*1024) /* set this to zero to indicate we have no possible interfaces */ static int interface_max_connections = 0; /*INTERFACE_MAX_CONNECTIONS_DEFAULT;*/ |