face: LinkService and Transport counters
refs #3177
Change-Id: Idc495c58c3103dae5f01a2b6ebbff47a2c4a5d2b
diff --git a/daemon/face/link-service.cpp b/daemon/face/link-service.cpp
index 3f19388..45194dd 100644
--- a/daemon/face/link-service.cpp
+++ b/daemon/face/link-service.cpp
@@ -35,7 +35,7 @@
LinkService::LinkService()
: m_face(nullptr)
, m_transport(nullptr)
- , m_counters(nullptr)
+ , m_oldCounters(nullptr)
{
}
@@ -51,7 +51,7 @@
m_face = &face;
m_transport = &transport;
- m_counters = &m_face->getMutableCounters();
+ m_oldCounters = &m_face->getMutableCounters();
}
void
@@ -60,7 +60,8 @@
BOOST_ASSERT(m_transport != nullptr);
NFD_LOG_FACE_TRACE(__func__);
- ++m_counters->getNOutInterests();
+ ++this->nOutInterests;
+ ++m_oldCounters->getNOutInterests();
doSendInterest(interest);
}
@@ -71,7 +72,8 @@
BOOST_ASSERT(m_transport != nullptr);
NFD_LOG_FACE_TRACE(__func__);
- ++m_counters->getNOutDatas();
+ ++this->nOutData;
+ ++m_oldCounters->getNOutDatas();
doSendData(data);
}
@@ -82,7 +84,7 @@
BOOST_ASSERT(m_transport != nullptr);
NFD_LOG_FACE_TRACE(__func__);
- // TODO#3177 increment counter
+ ++this->nOutNacks;
doSendNack(nack);
}
@@ -92,7 +94,8 @@
{
NFD_LOG_FACE_TRACE(__func__);
- ++m_counters->getNInInterests();
+ ++this->nInInterests;
+ ++m_oldCounters->getNInInterests();
afterReceiveInterest(interest);
}
@@ -102,7 +105,8 @@
{
NFD_LOG_FACE_TRACE(__func__);
- ++m_counters->getNInDatas();
+ ++this->nInData;
+ ++m_oldCounters->getNInDatas();
afterReceiveData(data);
}
@@ -112,7 +116,7 @@
{
NFD_LOG_FACE_TRACE(__func__);
- // TODO#3177 increment counter
+ ++this->nInNacks;
afterReceiveNack(nack);
}