Adding codes to handle no ndnd exception
diff --git a/src/contact-manager.h b/src/contact-manager.h
index 26a2a63..6de23d4 100644
--- a/src/contact-manager.h
+++ b/src/contact-manager.h
@@ -27,13 +27,14 @@
Q_OBJECT
public:
- ContactManager(ndn::Ptr<ContactStorage> contactStorage,
- ndn::Ptr<DnsStorage> dnsStorage,
- QObject* parent = 0);
+ ContactManager(QObject* parent = 0);
~ContactManager();
void
+ setWrapper();
+
+ void
fetchSelfEndorseCertificate(const ndn::Name& identity);
void
@@ -137,6 +138,9 @@
signals:
+ void
+ noNdnConnection(const QString& msg);
+
void
contactFetched(const EndorseCertificate& endorseCertificate);