util/FifoBuffer: rename to StaticFifoBuffer

This commit is contained in:
Max Kellermann
2014-08-06 16:54:53 +02:00
parent 1f3d3970f6
commit ea26da0be7
4 changed files with 11 additions and 11 deletions

View File

@@ -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)