File name format change and Removed warning messages (Except warning from boost for Logging)
Change-Id: If3a3a5411d377d925527fc3e8809c228a9a81e26
diff --git a/src/communication/interest-manager.hpp b/src/communication/interest-manager.hpp
new file mode 100644
index 0000000..5975e7f
--- /dev/null
+++ b/src/communication/interest-manager.hpp
@@ -0,0 +1,71 @@
+#ifndef NLSR_IM_HPP
+#define NLSR_IM_HPP
+
+#include <ndn-cpp-dev/face.hpp>
+#include <ndn-cpp-dev/security/key-chain.hpp>
+#include <ndn-cpp-dev/util/scheduler.hpp>
+
+namespace nlsr {
+
+class Nlsr;
+
+class InterestManager
+{
+public:
+ InterestManager()
+ {
+ }
+ void
+ processInterest(Nlsr& pnlsr, const ndn::Name& name,
+ const ndn::Interest& interest);
+
+ void
+ processInterestInfo(Nlsr& pnlsr, std::string& neighbor,
+ const ndn::Interest& interest);
+
+ void
+ processInterestLsa(Nlsr& pnlsr, const ndn::Interest& interest);
+
+ void
+ processInterestForNameLsa(Nlsr& pnlsr, const ndn::Interest& interest,
+ std::string lsaKey, uint32_t interestedlsSeqNo);
+
+ void
+ processInterestForAdjLsa(Nlsr& pnlsr, const ndn::Interest& interest,
+ std::string lsaKey, uint32_t interestedlsSeqNo);
+
+ void
+ processInterestForCorLsa(Nlsr& pnlsr, const ndn::Interest& interest,
+ std::string lsaKey, uint32_t interestedlsSeqNo);
+
+ void
+ processInterestKeys(Nlsr& pnlsr, const ndn::Interest& interest);
+
+ void
+ processInterestTimedOut(Nlsr& pnlsr, const ndn::Interest& interest);
+
+ void
+ processInterestTimedOutInfo(Nlsr& pnlsr, std::string& neighbor,
+ const ndn::Interest& interest);
+
+ void
+ processInterestTimedOutLsa(Nlsr& pnlsr, const ndn::Interest& interest);
+
+ void
+ expressInterest(Nlsr& pnlsr,
+ const std::string& interestNamePrefix, int scope, int seconds);
+
+ void
+ sendScheduledInfoInterest(Nlsr& pnlsr, int seconds);
+
+ void
+ scheduleInfoInterest(Nlsr& pnlsr, int seconds);
+
+private:
+
+
+};
+
+}//namespace nlsr
+
+#endif //NLSR_IM_HPP