publisher: Serve LSDB dataset on localhost prefix
refs: #2737
Change-Id: I4cc9bd1d07dea583937676dd491ab5c68fd821ea
diff --git a/src/publisher/lsa-publisher.hpp b/src/publisher/lsa-publisher.hpp
index 09aec8c..0f38037 100644
--- a/src/publisher/lsa-publisher.hpp
+++ b/src/publisher/lsa-publisher.hpp
@@ -36,11 +36,8 @@
class LsaPublisher : public SegmentPublisher<ndn::Face>
{
public:
- LsaPublisher(ndn::Face& face,
- const ndn::Name& prefix,
- ndn::KeyChain& keyChain,
- const ndn::Name::Component& datasetComponent)
- : SegmentPublisher<ndn::Face>(face, ndn::Name(prefix).append(datasetComponent), keyChain)
+ LsaPublisher(ndn::Face& face, ndn::KeyChain& keyChain)
+ : SegmentPublisher<ndn::Face>(face, keyChain)
{
}
@@ -75,7 +72,6 @@
public:
AdjacencyLsaPublisher(Lsdb& lsdb,
ndn::Face& face,
- const ndn::Name& prefix,
ndn::KeyChain& keyChain);
std::list<tlv::AdjacencyLsa>
@@ -97,7 +93,6 @@
public:
CoordinateLsaPublisher(Lsdb& lsdb,
ndn::Face& face,
- const ndn::Name& prefix,
ndn::KeyChain& keyChain);
std::list<tlv::CoordinateLsa>
@@ -119,7 +114,6 @@
public:
NameLsaPublisher(Lsdb& lsdb,
ndn::Face& face,
- const ndn::Name& prefix,
ndn::KeyChain& keyChain);
std::list<tlv::NameLsa>