File name format change and Removed warning messages (Except warning from boost for Logging)
Change-Id: If3a3a5411d377d925527fc3e8809c228a9a81e26
diff --git a/src/security/waiting-list.hpp b/src/security/waiting-list.hpp
new file mode 100644
index 0000000..d7e89ce
--- /dev/null
+++ b/src/security/waiting-list.hpp
@@ -0,0 +1,38 @@
+#ifndef NLSR_WL_HPP
+#define NLSR_WL_HPP
+
+#include "waiting-list-entry.hpp"
+
+namespace nlsr {
+class WaitingList
+{
+public:
+ WaitingList()
+ : m_waitingTable()
+ {}
+
+ std::list<WaitingListEntry>&
+ getWaitingTable()
+ {
+ return m_waitingTable;
+ }
+
+ bool
+ add(std::string respCert, std::string waitee);
+
+ std::pair<WaitingListEntry, bool>
+ getWaitingListEntry(std::string respCert);
+
+ bool
+ remove(std::string respCert);
+
+private:
+ std::list<WaitingListEntry> m_waitingTable;
+};
+
+std::ostream&
+operator<<(std::ostream& os, WaitingList wl);
+
+}//namespace nlsr
+
+#endif //NLSR_WL_HPP