diff options
author | Max Kellermann <max@duempel.org> | 2014-08-06 16:54:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-06 17:29:05 +0200 |
commit | ea26da0be7f4776d894874d68e468586b3be0efa (patch) | |
tree | 43475dcf6fce9f5bfd2bdeb5ede5f5252dcec21f /src/event | |
parent | 1f3d3970f672ec9b200ed358e2d02c45c97c34eb (diff) |
util/FifoBuffer: rename to StaticFifoBuffer
Diffstat (limited to 'src/event')
-rw-r--r-- | src/event/BufferedSocket.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/BufferedSocket.hxx b/src/event/BufferedSocket.hxx index 1c9b44e46..b1882de2f 100644 --- a/src/event/BufferedSocket.hxx +++ b/src/event/BufferedSocket.hxx @@ -22,7 +22,7 @@ #include "check.h" #include "SocketMonitor.hxx" -#include "util/FifoBuffer.hxx" +#include "util/StaticFifoBuffer.hxx" #include <assert.h> #include <stdint.h> @@ -34,7 +34,7 @@ class EventLoop; * A #SocketMonitor specialization that adds an input buffer. */ class BufferedSocket : protected SocketMonitor { - FifoBuffer<uint8_t, 8192> input; + StaticFifoBuffer<uint8_t, 8192> input; public: BufferedSocket(int _fd, EventLoop &_loop) |