diff options
author | Max Kellermann <max@duempel.org> | 2013-01-30 10:36:47 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-30 11:03:44 +0100 |
commit | a291415326f87afe5b42a89e9a90029b876895f2 (patch) | |
tree | 0ecd6f1e42a443ed5c96457682af3cafc39bc16c /src/ClientNew.cxx | |
parent | 4ad7456428913f5232768367f2c0694bcb4540bb (diff) | |
download | mpd-a291415326f87afe5b42a89e9a90029b876895f2.tar.gz mpd-a291415326f87afe5b42a89e9a90029b876895f2.tar.xz mpd-a291415326f87afe5b42a89e9a90029b876895f2.zip |
event/BufferedSocket: move output buffer to FullyBufferedSocket
BufferedSocket has just an input buffer, and FullyBufferedSocket adds
the output buffer.
Diffstat (limited to 'src/ClientNew.cxx')
-rw-r--r-- | src/ClientNew.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientNew.cxx b/src/ClientNew.cxx index 74cb0cc8d..9ac660799 100644 --- a/src/ClientNew.cxx +++ b/src/ClientNew.cxx @@ -49,7 +49,7 @@ static const char GREETING[] = "OK MPD " PROTOCOL_VERSION "\n"; Client::Client(EventLoop &_loop, Partition &_partition, int _fd, int _uid, int _num) - :BufferedSocket(_fd, _loop, 16384, client_max_output_buffer_size), + :FullyBufferedSocket(_fd, _loop, 16384, client_max_output_buffer_size), TimeoutMonitor(_loop), partition(_partition), playlist(partition.playlist), player_control(&partition.pc), |