[ndnSIM] Fixes for 22.02
diff --git a/daemon/fw/strategy.cpp b/daemon/fw/strategy.cpp
index 27ca68c..a0df5eb 100644
--- a/daemon/fw/strategy.cpp
+++ b/daemon/fw/strategy.cpp
@@ -188,7 +188,7 @@
}
// invoke PIT satisfy callback
- beforeSatisfyInterest(pitEntry, ingress, data);
+ beforeSatisfyInterest(data, ingress, pitEntry);
}
@@ -203,14 +203,6 @@
}
void
-Strategy::beforeSatisfyInterest(const Data& data, const FaceEndpoint& ingress,
- const shared_ptr<pit::Entry>& pitEntry)
-{
- NFD_LOG_DEBUG("beforeSatisfyInterest pitEntry=" << pitEntry->getName()
- << " in=" << ingress << " data=" << data.getName());
-}
-
-void
Strategy::afterReceiveData(const Data& data, const FaceEndpoint& ingress,
const shared_ptr<pit::Entry>& pitEntry)
{