From a291415326f87afe5b42a89e9a90029b876895f2 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 30 Jan 2013 10:36:47 +0100 Subject: event/BufferedSocket: move output buffer to FullyBufferedSocket BufferedSocket has just an input buffer, and FullyBufferedSocket adds the output buffer. --- src/ClientNew.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ClientNew.cxx') diff --git a/src/ClientNew.cxx b/src/ClientNew.cxx index 74cb0cc8..9ac66079 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), -- cgit v1.2.3