aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-06-17 02:32:10 +0200
committerMax Kellermann <max@duempel.org>2014-06-17 02:32:17 +0200
commite1d5ddb478cf8787f6472f14c0889af49b657c79 (patch)
tree5abafed86fc2c5c165a5fd08fca1269d08300e61 /src
parent2da0322329643512fdef2131b3e8666989dd8f26 (diff)
downloadmpd-e1d5ddb478cf8787f6472f14c0889af49b657c79.tar.gz
mpd-e1d5ddb478cf8787f6472f14c0889af49b657c79.tar.xz
mpd-e1d5ddb478cf8787f6472f14c0889af49b657c79.zip
input/AsyncInputStream: add method IsBufferFull()
Diffstat (limited to 'src')
-rw-r--r--src/input/AsyncInputStream.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input/AsyncInputStream.hxx b/src/input/AsyncInputStream.hxx
index f72e7465d..a2945be81 100644
--- a/src/input/AsyncInputStream.hxx
+++ b/src/input/AsyncInputStream.hxx
@@ -90,6 +90,10 @@ protected:
return buffer.IsEmpty();
}
+ bool IsBufferFull() const {
+ return buffer.IsFull();
+ }
+
gcc_pure
size_t GetBufferSpace() const {
return buffer.GetSpace();