diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/salticidae/buffer.h | 1 | ||||
-rw-r--r-- | include/salticidae/network.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/salticidae/buffer.h b/include/salticidae/buffer.h index c7b11dd..35d10b8 100644 --- a/include/salticidae/buffer.h +++ b/include/salticidae/buffer.h @@ -108,6 +108,7 @@ class SegBuffer { } size_t size() const { return _size; } + size_t len() const { return buffer.size(); } bool empty() const { return buffer.empty(); } void clear() { diff --git a/include/salticidae/network.h b/include/salticidae/network.h index 5b4cd7d..c3b9e79 100644 --- a/include/salticidae/network.h +++ b/include/salticidae/network.h @@ -584,7 +584,7 @@ void MsgNetwork<OpcodeType>::on_read(const ConnPool::conn_t &_conn) { } } } - if (conn->ready_recv && recv_buffer.size() < conn->max_recv_buff_size) + if (conn->ready_recv && recv_buffer.len() < conn->max_recv_buff_size) { /* resume reading from socket */ conn->ev_socket.del(); |