aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-10-13 15:32:16 -0400
committerDeterminant <ted.sybil@gmail.com>2019-10-13 15:32:16 -0400
commit8f76e5d8823b684d91e19f8efebe5579e00c8c48 (patch)
treef0421b5285e0530465de52f4f62ee4855ace7bc0 /include
parent01ad4251c8bc2cc240f7173b7267426085f7e5bb (diff)
add len()
Diffstat (limited to 'include')
-rw-r--r--include/salticidae/buffer.h1
-rw-r--r--include/salticidae/network.h2
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();