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/ClientExpire.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 '')
-rw-r--r-- | src/ClientExpire.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientExpire.cxx b/src/ClientExpire.cxx index 8f57f5b3e..6bb0a43ae 100644 --- a/src/ClientExpire.cxx +++ b/src/ClientExpire.cxx @@ -26,7 +26,7 @@ Client::SetExpired() if (IsExpired()) return; - BufferedSocket::Close(); + FullyBufferedSocket::Close(); TimeoutMonitor::Schedule(0); } |