diff options
Diffstat (limited to 'src/event/FullyBufferedSocket.hxx')
-rw-r--r-- | src/event/FullyBufferedSocket.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/FullyBufferedSocket.hxx b/src/event/FullyBufferedSocket.hxx index 1979556dc..71fcb0c36 100644 --- a/src/event/FullyBufferedSocket.hxx +++ b/src/event/FullyBufferedSocket.hxx @@ -32,7 +32,7 @@ class FullyBufferedSocket : protected BufferedSocket, private IdleMonitor { PeakBuffer output; public: - FullyBufferedSocket(int _fd, EventLoop &_loop, + FullyBufferedSocket(SocketDescriptor _fd, EventLoop &_loop, size_t normal_size, size_t peak_size=0) :BufferedSocket(_fd, _loop), IdleMonitor(_loop), output(normal_size, peak_size) { |