| 295 | } |
| 296 | int64_t getTotalBytesRecv() override { return m_context->connman ? m_context->connman->GetTotalBytesRecv() : 0; } |
| 297 | int64_t getTotalBytesSent() override { return m_context->connman ? m_context->connman->GetTotalBytesSent() : 0; } |
| 298 | size_t getMempoolSize() override { return m_context->mempool ? m_context->mempool->size() : 0; } |
| 299 | size_t getMempoolDynamicUsage() override { return m_context->mempool ? m_context->mempool->DynamicMemoryUsage() : 0; } |
| 300 | size_t getMempoolMaxUsage() override { return m_context->mempool ? m_context->mempool->m_opts.max_size_bytes : 0; } |
no test coverage detected