blob: bb67f2d258fb028dc63a0190ed00f5b3787fd32c [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonc6a85222017-01-03 16:54:34 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
dmcoomes9f936662017-03-02 10:33:09 -060022#ifndef NLSR_NLSR_HPP
23#define NLSR_NLSR_HPP
akmhoque298385a2014-02-13 14:13:09 -060024
akmhoquefdbddb12014-05-02 18:35:19 -050025#include <boost/cstdint.hpp>
26#include <stdexcept>
dmcoomes9f936662017-03-02 10:33:09 -060027#include <boost/throw_exception.hpp>
akmhoquefdbddb12014-05-02 18:35:19 -050028
akmhoquec8a10f72014-04-25 18:42:55 -050029#include <ndn-cxx/face.hpp>
30#include <ndn-cxx/security/key-chain.hpp>
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070031#include <ndn-cxx/security/certificate-cache-ttl.hpp>
akmhoquec8a10f72014-04-25 18:42:55 -050032#include <ndn-cxx/util/scheduler.hpp>
Junxiao Shi3e5120c2016-09-10 16:58:34 +000033#include <ndn-cxx/mgmt/nfd/face-event-notification.hpp>
34#include <ndn-cxx/mgmt/nfd/face-monitor.hpp>
Nick Gordond1f4f332017-01-20 13:40:57 -060035#include <ndn-cxx/mgmt/dispatcher.hpp>
Nick Gordond5c1a372016-10-31 13:56:23 -050036#include <ndn-cxx/mgmt/nfd/face-status.hpp>
37#include <ndn-cxx/data.hpp>
38#include <ndn-cxx/encoding/block.hpp>
akmhoque298385a2014-02-13 14:13:09 -060039
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050040#include "adjacency-list.hpp"
Vince Lehman0a7da612014-10-29 14:39:29 -050041#include "common.hpp"
akmhoque53353462014-04-22 08:43:45 -050042#include "conf-parameter.hpp"
akmhoque31d1d4b2014-05-05 22:08:14 -050043#include "hello-protocol.hpp"
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050044#include "lsdb.hpp"
45#include "name-prefix-list.hpp"
Vince Lehman7b616582014-10-17 16:25:39 -050046#include "test-access-control.hpp"
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070047#include "validator.hpp"
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050048#include "publisher/lsdb-dataset-interest-handler.hpp"
49#include "route/fib.hpp"
50#include "route/name-prefix-table.hpp"
51#include "route/routing-table.hpp"
52#include "security/certificate-store.hpp"
53#include "update/prefix-update-processor.hpp"
Nick Gordon4d2c6c02017-01-20 13:18:46 -060054#include "update/nfd-rib-command-processor.hpp"
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050055#include "utility/name-helper.hpp"
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070056
akmhoque53353462014-04-22 08:43:45 -050057namespace nlsr {
58
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070059static ndn::Name DEFAULT_BROADCAST_PREFIX("/ndn/broadcast");
60
akmhoque53353462014-04-22 08:43:45 -050061class Nlsr
62{
Nick Gordond5c1a372016-10-31 13:56:23 -050063public:
64 using FetchDatasetCallback = std::function<void(const std::vector<ndn::nfd::FaceStatus>&)>;
65 using FetchDatasetTimeoutCallback = std::function<void(uint32_t, const std::string&)>;
Nick Gordon9461afb2017-04-25 15:54:50 -050066
akmhoquefdbddb12014-05-02 18:35:19 -050067 class Error : public std::runtime_error
68 {
69 public:
70 explicit
71 Error(const std::string& what)
72 : std::runtime_error(what)
73 {
74 }
75 };
76
Laqin Fana4cf4022017-01-03 18:57:35 +000077 Nlsr(boost::asio::io_service& ioService, ndn::Scheduler& scheduler, ndn::Face& face, ndn::KeyChain& keyChain);
akmhoque298385a2014-02-13 14:13:09 -060078
akmhoque53353462014-04-22 08:43:45 -050079 void
80 registrationFailed(const ndn::Name& name);
81
82 void
akmhoque157b0a42014-05-13 00:26:37 -050083 onRegistrationSuccess(const ndn::Name& name);
84
85 void
alvy297f4162015-03-03 17:15:33 -060086 onLocalhostRegistrationSuccess(const ndn::Name& name);
87
88 void
akmhoque31d1d4b2014-05-05 22:08:14 -050089 setInfoInterestFilter();
90
91 void
92 setLsaInterestFilter();
akmhoque53353462014-04-22 08:43:45 -050093
94 void
95 startEventLoop();
96
akmhoque53353462014-04-22 08:43:45 -050097 std::string
akmhoquefdbddb12014-05-02 18:35:19 -050098 getConfFileName() const
Yingdi Yu40cd1c32014-04-17 15:02:17 -070099 {
akmhoque53353462014-04-22 08:43:45 -0500100 return m_configFileName;
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700101 }
102
akmhoque53353462014-04-22 08:43:45 -0500103 void
akmhoquefdbddb12014-05-02 18:35:19 -0500104 setConfFileName(const std::string& fileName)
akmhoque5a44dd42014-03-12 18:11:32 -0500105 {
akmhoque53353462014-04-22 08:43:45 -0500106 m_configFileName = fileName;
107 }
akmhoque5a44dd42014-03-12 18:11:32 -0500108
akmhoque53353462014-04-22 08:43:45 -0500109 bool
110 getIsSetDaemonProcess()
111 {
112 return m_isDaemonProcess;
113 }
akmhoque5a44dd42014-03-12 18:11:32 -0500114
akmhoque53353462014-04-22 08:43:45 -0500115 void
116 setIsDaemonProcess(bool value)
117 {
118 m_isDaemonProcess = value;
119 }
akmhoque5a44dd42014-03-12 18:11:32 -0500120
akmhoque53353462014-04-22 08:43:45 -0500121 ConfParameter&
122 getConfParameter()
123 {
124 return m_confParam;
125 }
akmhoque5a44dd42014-03-12 18:11:32 -0500126
akmhoquec8a10f72014-04-25 18:42:55 -0500127 AdjacencyList&
128 getAdjacencyList()
akmhoque53353462014-04-22 08:43:45 -0500129 {
akmhoquec8a10f72014-04-25 18:42:55 -0500130 return m_adjacencyList;
akmhoque53353462014-04-22 08:43:45 -0500131 }
akmhoque298385a2014-02-13 14:13:09 -0600132
akmhoquec8a10f72014-04-25 18:42:55 -0500133 NamePrefixList&
134 getNamePrefixList()
akmhoque53353462014-04-22 08:43:45 -0500135 {
akmhoquec8a10f72014-04-25 18:42:55 -0500136 return m_namePrefixList;
akmhoque53353462014-04-22 08:43:45 -0500137 }
akmhoque298385a2014-02-13 14:13:09 -0600138
akmhoquefdbddb12014-05-02 18:35:19 -0500139 ndn::Face&
akmhoque53353462014-04-22 08:43:45 -0500140 getNlsrFace()
141 {
142 return m_nlsrFace;
143 }
akmhoque298385a2014-02-13 14:13:09 -0600144
akmhoque53353462014-04-22 08:43:45 -0500145 Lsdb&
146 getLsdb()
147 {
148 return m_nlsrLsdb;
149 }
akmhoque298385a2014-02-13 14:13:09 -0600150
akmhoque53353462014-04-22 08:43:45 -0500151 RoutingTable&
152 getRoutingTable()
153 {
154 return m_routingTable;
155 }
akmhoque298385a2014-02-13 14:13:09 -0600156
akmhoquec8a10f72014-04-25 18:42:55 -0500157 NamePrefixTable&
158 getNamePrefixTable()
akmhoque53353462014-04-22 08:43:45 -0500159 {
akmhoquec8a10f72014-04-25 18:42:55 -0500160 return m_namePrefixTable;
akmhoque53353462014-04-22 08:43:45 -0500161 }
akmhoque298385a2014-02-13 14:13:09 -0600162
akmhoque53353462014-04-22 08:43:45 -0500163 Fib&
164 getFib()
165 {
166 return m_fib;
167 }
akmhoque298385a2014-02-13 14:13:09 -0600168
akmhoque53353462014-04-22 08:43:45 -0500169 long int
170 getAdjBuildCount()
171 {
172 return m_adjBuildCount;
173 }
akmhoque298385a2014-02-13 14:13:09 -0600174
akmhoque53353462014-04-22 08:43:45 -0500175 void
176 incrementAdjBuildCount()
177 {
178 m_adjBuildCount++;
179 }
akmhoque298385a2014-02-13 14:13:09 -0600180
akmhoque53353462014-04-22 08:43:45 -0500181 void
akmhoquefdbddb12014-05-02 18:35:19 -0500182 setAdjBuildCount(int64_t abc)
akmhoque53353462014-04-22 08:43:45 -0500183 {
184 m_adjBuildCount = abc;
185 }
akmhoque298385a2014-02-13 14:13:09 -0600186
akmhoque157b0a42014-05-13 00:26:37 -0500187 bool
akmhoque53353462014-04-22 08:43:45 -0500188 getIsBuildAdjLsaSheduled()
189 {
190 return m_isBuildAdjLsaSheduled;
191 }
akmhoque298385a2014-02-13 14:13:09 -0600192
akmhoque53353462014-04-22 08:43:45 -0500193 void
194 setIsBuildAdjLsaSheduled(bool iabls)
195 {
196 m_isBuildAdjLsaSheduled = iabls;
197 }
akmhoque298385a2014-02-13 14:13:09 -0600198
akmhoque53353462014-04-22 08:43:45 -0500199 bool
200 getIsRoutingTableCalculating()
201 {
202 return m_isRoutingTableCalculating;
203 }
akmhoque85d88332014-02-17 21:11:21 -0600204
akmhoque53353462014-04-22 08:43:45 -0500205 void
206 setIsRoutingTableCalculating(bool irtc)
207 {
208 m_isRoutingTableCalculating = irtc;
209 }
akmhoque298385a2014-02-13 14:13:09 -0600210
akmhoque53353462014-04-22 08:43:45 -0500211 bool
212 getIsRouteCalculationScheduled()
213 {
214 return m_isRouteCalculationScheduled;
215 }
akmhoque298385a2014-02-13 14:13:09 -0600216
akmhoque53353462014-04-22 08:43:45 -0500217 void
218 setIsRouteCalculationScheduled(bool ircs)
219 {
220 m_isRouteCalculationScheduled = ircs;
221 }
akmhoque298385a2014-02-13 14:13:09 -0600222
Muktadir R Chowdhury3ac07282016-06-17 16:30:29 -0500223 LsdbDatasetInterestHandler&
224 getLsdbDatasetHandler()
225 {
226 return m_lsdbDatasetHandler;
227 }
228
akmhoque53353462014-04-22 08:43:45 -0500229 void
230 initialize();
akmhoque1fd8c1e2014-02-19 19:41:49 -0600231
Nick Gordond5c1a372016-10-31 13:56:23 -0500232 /*! \brief Initializes neighbors' Faces using information from NFD.
233 * \sa Nlsr::initialize()
234 * \sa Nlsr::processFaceDataset()
235 *
236 * This function serves as the entry-point for initializing the
237 * neighbors listed in nlsr.conf during Nlsr::initialize(). NLSR
238 * will attempt to fetch a dataset of Faces from NFD, and configure
239 * each of its neighbors using information from that dataset. The
240 * explicit callbacks allow for better testability.
241 */
242 void
243 initializeFaces(const FetchDatasetCallback& onFetchSuccess,
244 const FetchDatasetTimeoutCallback& onFetchFailure);
245
246 void
247 onFaceDatasetFetchTimeout(uint32_t code,
248 const std::string& reason,
249 uint32_t nRetriesSoFar);
250
251 /*! \brief Consumes a Face StatusDataset to configure NLSR neighbors.
252 * \sa Nlsr::initializeFaces
253 * \param faces A Face Dataset that should conform to FaceMgmt specifications.
254 *
255 * This function processes a Face StatusDataset that should conform
256 * to the FaceMgmt specifications listed
257 * [here](https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt#Face-Dataset).
258 * Any newly configured neighbors will have prefixes registered with NFD
259 * and be sent Hello Interests as well.
260 */
261 void
262 processFaceDataset(const std::vector<ndn::nfd::FaceStatus>& faces);
263
264 /*! \brief Registers NLSR-specific prefixes for a neighbor (Adjacent)
265 * \sa Nlsr::initializeFaces
266 * \param adj A reference to the neighbor to register prefixes for
267 * \param timeout The amount of time to give NFD to respond to *each* registration request.
268 *
269 * Registers the prefixes in NFD that NLSR needs to route with a
270 * neighbor. The timeout given is how long to set the timeout for
271 * *each* registration request that is made.
272 */
273 void
274 registerAdjacencyPrefixes(const Adjacent& adj,
275 const ndn::time::milliseconds& timeout);
276
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700277 void
akmhoque443ad812014-07-29 10:26:56 -0500278 initializeKey();
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700279
280 void
281 loadValidator(boost::property_tree::ptree section,
282 const std::string& filename)
283 {
284 m_validator.load(section, filename);
285 }
286
287 Validator&
288 getValidator()
289 {
290 return m_validator;
291 }
292
293 void
dmcoomes9f936662017-03-02 10:33:09 -0600294 loadCertToPublish(std::shared_ptr<ndn::IdentityCertificate> certificate)
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700295 {
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500296 m_certStore.insert(certificate);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700297 }
298
dmcoomes9f936662017-03-02 10:33:09 -0600299 std::shared_ptr<const ndn::IdentityCertificate>
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700300 getCertificate(const ndn::Name& certificateNameWithoutVersion)
301 {
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500302 shared_ptr<const ndn::IdentityCertificate> cert =
303 m_certStore.find(certificateNameWithoutVersion);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700304
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500305 if (cert != nullptr) {
306 return cert;
307 }
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700308
309 return m_certificateCache->getCertificate(certificateNameWithoutVersion);
310 }
311
312 ndn::KeyChain&
313 getKeyChain()
314 {
315 return m_keyChain;
316 }
317
318 const ndn::Name&
319 getDefaultCertName()
320 {
321 return m_defaultCertName;
322 }
323
alvy297f4162015-03-03 17:15:33 -0600324 update::PrefixUpdateProcessor&
325 getPrefixUpdateProcessor()
326 {
327 return m_prefixUpdateProcessor;
328 }
329
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600330 update::NfdRibCommandProcessor&
331 getNfdRibCommandProcessor()
332 {
333 return m_nfdRibCommandProcessor;
334 }
335
Nick Gordond1f4f332017-01-20 13:40:57 -0600336 ndn::mgmt::Dispatcher&
337 getDispatcher()
338 {
laqinfand22da512017-05-25 17:29:53 -0500339 return m_localhostDispatcher;
340 }
341
342 ndn::mgmt::Dispatcher&
343 getDispatcherRouterName()
344 {
345 return m_routerNameDispatcher;
Nick Gordond1f4f332017-01-20 13:40:57 -0600346 }
347
akmhoquee1765152014-06-30 11:32:01 -0500348 void
akmhoquec04e7272014-07-02 11:00:14 -0500349 setStrategies();
akmhoque157b0a42014-05-13 00:26:37 -0500350
akmhoque0494c252014-07-23 23:46:44 -0500351 void
352 daemonize();
353
Vince Lehman7b616582014-10-17 16:25:39 -0500354 uint32_t
355 getFirstHelloInterval() const
356 {
357 return m_firstHelloInterval;
358 }
359
Nick Gordond5c1a372016-10-31 13:56:23 -0500360 /*! \brief Canonize the URI for this and all proceeding neighbors in a list.
Nick Gordon9461afb2017-04-25 15:54:50 -0500361 *
362 * This function canonizes the URI of the Adjacent object pointed to
363 * by currentNeighbor. It then executes the then callback, providing
364 * the next iterator in the list to the callback. A standard
365 * invocation would be to pass the begin() iterator of NLSR's
366 * adjacency list, and to provide Nlsr::canonizeContinuation as the
367 * callback. Because every URI must be canonical before we begin
368 * operations, the canonize function must call initialize itself.
369 *
370 * \sa Nlsr::canonizeContinuation
371 * \sa Nlsr::initialize
372 * \sa NlsrRunner::run
373 */
374 void
375 canonizeNeighborUris(std::list<Adjacent>::iterator currentNeighbor,
376 std::function<void(std::list<Adjacent>::iterator)> then);
377
378
alvy297f4162015-03-03 17:15:33 -0600379PUBLIC_WITH_TESTS_ELSE_PRIVATE:
380 void
dmcoomes9f936662017-03-02 10:33:09 -0600381 addCertificateToCache(std::shared_ptr<ndn::IdentityCertificate> certificate)
alvy297f4162015-03-03 17:15:33 -0600382 {
383 if (certificate != nullptr) {
384 m_certificateCache->insertCertificate(certificate);
385 }
386 }
387
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500388 security::CertificateStore&
389 getCertificateStore()
390 {
391 return m_certStore;
392 }
393
akmhoque393d4ff2014-07-16 14:27:03 -0500394private:
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700395 void
396 registerKeyPrefix();
397
398 void
alvy297f4162015-03-03 17:15:33 -0600399 registerLocalhostPrefix();
400
401 void
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700402 onKeyInterest(const ndn::Name& name, const ndn::Interest& interest);
403
404 void
405 onKeyPrefixRegSuccess(const ndn::Name& name);
406
akmhoquee1765152014-06-30 11:32:01 -0500407 void
akmhoquec04e7272014-07-02 11:00:14 -0500408 onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification);
akmhoquee1765152014-06-30 11:32:01 -0500409
Vince Lehman7b616582014-10-17 16:25:39 -0500410 void
411 setFirstHelloInterval(uint32_t interval)
412 {
413 m_firstHelloInterval = interval;
414 }
415
Nick Gordond5c1a372016-10-31 13:56:23 -0500416 /*! \brief Continues canonizing neighbor URIs.
Nick Gordon9461afb2017-04-25 15:54:50 -0500417 *
418 * For testability reasons, we want what each instance of
419 * canonization does after completion to be controllable. The best
420 * way to do this is to control that by simply passing a
421 * continuation function.
422 */
423 void
424 canonizeContinuation(std::list<Adjacent>::iterator iterator);
425
Nick Gordond5c1a372016-10-31 13:56:23 -0500426 void
427 scheduleDatasetFetch();
428
alvy297f4162015-03-03 17:15:33 -0600429public:
430 static const ndn::Name LOCALHOST_PREFIX;
431
akmhoque157b0a42014-05-13 00:26:37 -0500432private:
Vince Lehman904c2412014-09-23 19:36:11 -0500433 ndn::Face& m_nlsrFace;
Vince Lehman7c603292014-09-11 17:48:16 -0500434 ndn::Scheduler& m_scheduler;
Laqin Fana4cf4022017-01-03 18:57:35 +0000435 ndn::KeyChain& m_keyChain;
akmhoque53353462014-04-22 08:43:45 -0500436 ConfParameter m_confParam;
akmhoquec8a10f72014-04-25 18:42:55 -0500437 AdjacencyList m_adjacencyList;
438 NamePrefixList m_namePrefixList;
akmhoque53353462014-04-22 08:43:45 -0500439 bool m_isDaemonProcess;
akmhoquefdbddb12014-05-02 18:35:19 -0500440 std::string m_configFileName;
akmhoque53353462014-04-22 08:43:45 -0500441 Lsdb m_nlsrLsdb;
akmhoquefdbddb12014-05-02 18:35:19 -0500442 int64_t m_adjBuildCount;
akmhoque53353462014-04-22 08:43:45 -0500443 bool m_isBuildAdjLsaSheduled;
444 bool m_isRouteCalculationScheduled;
445 bool m_isRoutingTableCalculating;
akmhoque53353462014-04-22 08:43:45 -0500446 RoutingTable m_routingTable;
akmhoque53353462014-04-22 08:43:45 -0500447 Fib m_fib;
akmhoque31d1d4b2014-05-05 22:08:14 -0500448 NamePrefixTable m_namePrefixTable;
laqinfand22da512017-05-25 17:29:53 -0500449 ndn::mgmt::Dispatcher m_localhostDispatcher;
450 ndn::mgmt::Dispatcher m_routerNameDispatcher;
451
Vince Lehmand6bb3fa2015-04-24 14:21:39 -0500452 LsdbDatasetInterestHandler m_lsdbDatasetHandler;
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700453
Vince Lehmanf7eec4f2015-05-08 19:02:31 -0500454PUBLIC_WITH_TESTS_ELSE_PRIVATE:
455 HelloProtocol m_helloProtocol;
456
Vince Lehman7b616582014-10-17 16:25:39 -0500457private:
dmcoomes9f936662017-03-02 10:33:09 -0600458 std::shared_ptr<ndn::CertificateCacheTtl> m_certificateCache;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -0500459 security::CertificateStore m_certStore;
Nick Gordond5c1a372016-10-31 13:56:23 -0500460
461PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700462 Validator m_validator;
Nick Gordond5c1a372016-10-31 13:56:23 -0500463
464private:
465 ndn::nfd::Controller m_controller;
466 ndn::nfd::Controller m_faceDatasetController;
Joao Pereira97473d42015-07-03 16:57:27 -0400467 ndn::security::SigningInfo m_signingInfo;
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700468 ndn::Name m_defaultCertName;
alvy297f4162015-03-03 17:15:33 -0600469 update::PrefixUpdateProcessor m_prefixUpdateProcessor;
Nick Gordon4d2c6c02017-01-20 13:18:46 -0600470 update::NfdRibCommandProcessor m_nfdRibCommandProcessor;
akmhoquee1765152014-06-30 11:32:01 -0500471
akmhoque060d3022014-08-12 13:35:06 -0500472 ndn::nfd::FaceMonitor m_faceMonitor;
Vince Lehman7b616582014-10-17 16:25:39 -0500473
474 uint32_t m_firstHelloInterval;
Nick Gordond5c1a372016-10-31 13:56:23 -0500475
476 friend class NlsrRunner;
akmhoque53353462014-04-22 08:43:45 -0500477};
akmhoque298385a2014-02-13 14:13:09 -0600478
Nick Gordonfad8e252016-08-11 14:21:38 -0500479} // namespace nlsr
akmhoqueb1710aa2014-02-19 17:13:36 -0600480
dmcoomes9f936662017-03-02 10:33:09 -0600481#endif // NLSR_NLSR_HPP