blob: cac002a35dabc2e17748588ec9cb0e97c2068d91 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
dmcoomescf8d0ed2017-02-21 11:39:01 -06003 * Copyright (c) 2014-2018, 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
dmcoomese689dd62017-03-29 11:05:12 -050022#ifndef NLSR_CONF_PARAMETER_HPP
23#define NLSR_CONF_PARAMETER_HPP
akmhoque53353462014-04-22 08:43:45 -050024
Nick Gordone98480b2017-05-24 11:23:03 -050025#include "common.hpp"
Ashlesh Gawande3909aa12017-07-28 16:01:35 -050026#include "logger.hpp"
Ashlesh Gawande982a58f2018-02-14 17:39:12 -060027#include "test-access-control.hpp"
Ashlesh Gawande3909aa12017-07-28 16:01:35 -050028
akmhoque53353462014-04-22 08:43:45 -050029#include <iostream>
akmhoquefdbddb12014-05-02 18:35:19 -050030#include <boost/cstdint.hpp>
akmhoque31d1d4b2014-05-05 22:08:14 -050031#include <ndn-cxx/face.hpp>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070032#include <ndn-cxx/util/time.hpp>
akmhoque53353462014-04-22 08:43:45 -050033
34namespace nlsr {
akmhoque157b0a42014-05-13 00:26:37 -050035
36enum {
37 LSA_REFRESH_TIME_MIN = 240,
38 LSA_REFRESH_TIME_DEFAULT = 1800,
39 LSA_REFRESH_TIME_MAX = 7200
40};
41
42enum {
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070043 LSA_INTEREST_LIFETIME_MIN = 1,
44 LSA_INTEREST_LIFETIME_DEFAULT = 4,
45 LSA_INTEREST_LIFETIME_MAX = 60
46};
47
48enum {
Vince Lehman7b616582014-10-17 16:25:39 -050049 ADJ_LSA_BUILD_INTERVAL_MIN = 0,
50 ADJ_LSA_BUILD_INTERVAL_DEFAULT = 5,
51 ADJ_LSA_BUILD_INTERVAL_MAX = 5
52};
53
54enum {
55 FIRST_HELLO_INTERVAL_MIN = 0,
56 FIRST_HELLO_INTERVAL_DEFAULT = 10,
57 FIRST_HELLO_INTERVAL_MAX = 10
58};
59
60enum {
61 ROUTING_CALC_INTERVAL_MIN = 0,
62 ROUTING_CALC_INTERVAL_DEFAULT = 15,
63 ROUTING_CALC_INTERVAL_MAX = 15
64};
65
Nick Gordond5c1a372016-10-31 13:56:23 -050066
67enum {
68 FACE_DATASET_FETCH_TRIES_MIN = 1,
69 FACE_DATASET_FETCH_TRIES_MAX = 10,
70 FACE_DATASET_FETCH_TRIES_DEFAULT = 3
71};
72
73enum {
74 FACE_DATASET_FETCH_INTERVAL_MIN = 1800,
75 FACE_DATASET_FETCH_INTERVAL_MAX = 5400,
76 FACE_DATASET_FETCH_INTERVAL_DEFAULT = 3600
77};
78
Vince Lehman7b616582014-10-17 16:25:39 -050079enum {
akmhoque157b0a42014-05-13 00:26:37 -050080 HELLO_RETRIES_MIN = 1,
81 HELLO_RETRIES_DEFAULT = 3,
82 HELLO_RETRIES_MAX = 15
83};
84
85enum {
86 HELLO_TIMEOUT_MIN = 1,
87 HELLO_TIMEOUT_DEFAULT = 3,
88 HELLO_TIMEOUT_MAX = 15
89};
90
91enum {
92 HELLO_INTERVAL_MIN = 30,
93 HELLO_INTERVAL_DEFAULT = 60,
94 HELLO_INTERVAL_MAX =90
95};
96
97enum {
98 MAX_FACES_PER_PREFIX_MIN = 0,
alvya2228c62014-12-09 10:25:11 -060099 MAX_FACES_PER_PREFIX_DEFAULT = 0,
akmhoque157b0a42014-05-13 00:26:37 -0500100 MAX_FACES_PER_PREFIX_MAX = 60
101};
102
Nick Gordon5c467f02016-07-13 13:40:10 -0500103enum HyperbolicState {
akmhoque157b0a42014-05-13 00:26:37 -0500104 HYPERBOLIC_STATE_OFF = 0,
105 HYPERBOLIC_STATE_ON = 1,
alvya2228c62014-12-09 10:25:11 -0600106 HYPERBOLIC_STATE_DRY_RUN = 2,
107 HYPERBOLIC_STATE_DEFAULT = 0
akmhoque157b0a42014-05-13 00:26:37 -0500108};
109
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600110enum {
111 SYNC_INTEREST_LIFETIME_MIN = 1000,
112 SYNC_INTEREST_LIFETIME_DEFAULT = 60000,
113 SYNC_INTEREST_LIFETIME_MAX = 120000,
114};
115
Nick Gordond0a7df32017-05-30 16:44:34 -0500116/*! \brief A class to house all the configuration parameters for NLSR.
117 *
118 * This class is conceptually a singleton (but not mechanically) which
119 * is just a collection of attributes that serve as a
120 * separation-of-data for NLSR's configuration variables. NLSR refers
121 * to an instance of this class for all its configuration
122 * parameters. This object is typically populated by a
123 * ConfFileProcessor reading a configuration file.
124 *
125 * \sa nlsr::ConfFileProcessor
126 */
akmhoque53353462014-04-22 08:43:45 -0500127class ConfParameter
128{
129
130public:
131 ConfParameter()
akmhoque157b0a42014-05-13 00:26:37 -0500132 : m_lsaRefreshTime(LSA_REFRESH_TIME_DEFAULT)
Vince Lehman7b616582014-10-17 16:25:39 -0500133 , m_adjLsaBuildInterval(ADJ_LSA_BUILD_INTERVAL_DEFAULT)
134 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
135 , m_routingCalcInterval(ROUTING_CALC_INTERVAL_DEFAULT)
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500136 , m_faceDatasetFetchInterval(ndn::time::seconds(static_cast<int>(FACE_DATASET_FETCH_INTERVAL_DEFAULT)))
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700137 , m_lsaInterestLifetime(ndn::time::seconds(static_cast<int>(LSA_INTEREST_LIFETIME_DEFAULT)))
Alexander Afanasyev1cf1e102014-08-17 19:47:57 -0700138 , m_routerDeadInterval(2 * LSA_REFRESH_TIME_DEFAULT)
akmhoque157b0a42014-05-13 00:26:37 -0500139 , m_logLevel("INFO")
140 , m_interestRetryNumber(HELLO_RETRIES_DEFAULT)
141 , m_interestResendTime(HELLO_TIMEOUT_DEFAULT)
142 , m_infoInterestInterval(HELLO_INTERVAL_DEFAULT)
143 , m_hyperbolicState(HYPERBOLIC_STATE_OFF)
akmhoque53353462014-04-22 08:43:45 -0500144 , m_corR(0)
akmhoque157b0a42014-05-13 00:26:37 -0500145 , m_maxFacesPerPrefix(MAX_FACES_PER_PREFIX_MIN)
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700146 {
147 }
akmhoque53353462014-04-22 08:43:45 -0500148
149 void
Ashlesh Gawande982a58f2018-02-14 17:39:12 -0600150 setNetwork(const ndn::Name& networkName);
akmhoque53353462014-04-22 08:43:45 -0500151
akmhoque31d1d4b2014-05-05 22:08:14 -0500152 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700153 getNetwork() const
akmhoque53353462014-04-22 08:43:45 -0500154 {
155 return m_network;
156 }
157
158 void
akmhoque157b0a42014-05-13 00:26:37 -0500159 setRouterName(const ndn::Name& routerName)
160 {
161 m_routerName = routerName;
162 }
163
164 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700165 getRouterName() const
akmhoque157b0a42014-05-13 00:26:37 -0500166 {
167 return m_routerName;
168 }
169
170 void
171 setSiteName(const ndn::Name& siteName)
172 {
173 m_siteName = siteName;
174 }
175
176 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700177 getSiteName() const
akmhoque157b0a42014-05-13 00:26:37 -0500178 {
179 return m_siteName;
180 }
181
182 void
akmhoque53353462014-04-22 08:43:45 -0500183 buildRouterPrefix()
184 {
akmhoque31d1d4b2014-05-05 22:08:14 -0500185 m_routerPrefix = m_network;
186 m_routerPrefix.append(m_siteName);
187 m_routerPrefix.append(m_routerName);
akmhoque53353462014-04-22 08:43:45 -0500188 }
189
akmhoque31d1d4b2014-05-05 22:08:14 -0500190 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700191 getRouterPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500192 {
193 return m_routerPrefix;
194 }
195
akmhoque157b0a42014-05-13 00:26:37 -0500196
akmhoque31d1d4b2014-05-05 22:08:14 -0500197 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700198 getChronosyncPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500199 {
akmhoque157b0a42014-05-13 00:26:37 -0500200 return m_chronosyncPrefix;
akmhoque53353462014-04-22 08:43:45 -0500201 }
202
akmhoque157b0a42014-05-13 00:26:37 -0500203 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700204 getLsaPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500205 {
akmhoque157b0a42014-05-13 00:26:37 -0500206 return m_lsaPrefix;
akmhoque53353462014-04-22 08:43:45 -0500207 }
208
209 void
alvy5a454952014-12-15 12:49:54 -0600210 setLsaRefreshTime(uint32_t lrt)
akmhoque53353462014-04-22 08:43:45 -0500211 {
212 m_lsaRefreshTime = lrt;
akmhoque53353462014-04-22 08:43:45 -0500213 }
214
alvy5a454952014-12-15 12:49:54 -0600215 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700216 getLsaRefreshTime() const
akmhoque53353462014-04-22 08:43:45 -0500217 {
218 return m_lsaRefreshTime;
219 }
220
221 void
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700222 setLsaInterestLifetime(const ndn::time::seconds& lifetime)
223 {
224 m_lsaInterestLifetime = lifetime;
225 }
226
227 const ndn::time::seconds&
228 getLsaInterestLifetime() const
229 {
230 return m_lsaInterestLifetime;
231 }
232
233 void
Vince Lehman7b616582014-10-17 16:25:39 -0500234 setAdjLsaBuildInterval(uint32_t interval)
235 {
236 m_adjLsaBuildInterval = interval;
237 }
238
239 uint32_t
240 getAdjLsaBuildInterval() const
241 {
242 return m_adjLsaBuildInterval;
243 }
244
245 void
246 setFirstHelloInterval(uint32_t interval)
247 {
248 m_firstHelloInterval = interval;
249 }
250
251 uint32_t
252 getFirstHelloInterval() const
253 {
254 return m_firstHelloInterval;
255 }
256
257 void
258 setRoutingCalcInterval(uint32_t interval)
259 {
260 m_routingCalcInterval = interval;
261 }
262
263 uint32_t
264 getRoutingCalcInterval() const
265 {
266 return m_routingCalcInterval;
267 }
268
269 void
alvy5a454952014-12-15 12:49:54 -0600270 setRouterDeadInterval(uint32_t rdt)
akmhoque53353462014-04-22 08:43:45 -0500271 {
272 m_routerDeadInterval = rdt;
273 }
274
alvy5a454952014-12-15 12:49:54 -0600275 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700276 getRouterDeadInterval() const
akmhoque53353462014-04-22 08:43:45 -0500277 {
278 return m_routerDeadInterval;
279 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700280
281 void
Nick Gordond5c1a372016-10-31 13:56:23 -0500282 setFaceDatasetFetchTries(uint32_t count)
283 {
284 m_faceDatasetFetchTries = count;
285 }
286
287 uint32_t
288 getFaceDatasetFetchTries() const
289 {
290 return m_faceDatasetFetchTries;
291 }
292
293 void
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500294 setFaceDatasetFetchInterval(uint32_t interval)
Nick Gordond5c1a372016-10-31 13:56:23 -0500295 {
Ashlesh Gawande3909aa12017-07-28 16:01:35 -0500296 m_faceDatasetFetchInterval = ndn::time::seconds(interval);
Nick Gordond5c1a372016-10-31 13:56:23 -0500297 }
298
299 const ndn::time::seconds
300 getFaceDatasetFetchInterval() const
301 {
302 return m_faceDatasetFetchInterval;
303 }
304
305 void
akmhoque157b0a42014-05-13 00:26:37 -0500306 setLogLevel(const std::string& logLevel)
307 {
308 m_logLevel = logLevel;
309 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700310
311 const std::string&
312 getLogLevel() const
akmhoque157b0a42014-05-13 00:26:37 -0500313 {
314 return m_logLevel;
315 }
akmhoque53353462014-04-22 08:43:45 -0500316
317 void
akmhoque157b0a42014-05-13 00:26:37 -0500318 setInterestRetryNumber(uint32_t irn)
akmhoque53353462014-04-22 08:43:45 -0500319 {
akmhoque157b0a42014-05-13 00:26:37 -0500320 m_interestRetryNumber = irn;
321 }
322
323 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700324 getInterestRetryNumber() const
akmhoque157b0a42014-05-13 00:26:37 -0500325 {
326 return m_interestRetryNumber;
327 }
328
329 void
alvy5a454952014-12-15 12:49:54 -0600330 setInterestResendTime(uint32_t irt)
akmhoque157b0a42014-05-13 00:26:37 -0500331 {
332 m_interestResendTime = irt;
akmhoque53353462014-04-22 08:43:45 -0500333 }
334
alvy5a454952014-12-15 12:49:54 -0600335 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700336 getInterestResendTime() const
akmhoque53353462014-04-22 08:43:45 -0500337 {
akmhoque157b0a42014-05-13 00:26:37 -0500338 return m_interestResendTime;
akmhoque53353462014-04-22 08:43:45 -0500339 }
340
alvy5a454952014-12-15 12:49:54 -0600341 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700342 getInfoInterestInterval() const
akmhoque53353462014-04-22 08:43:45 -0500343 {
akmhoque157b0a42014-05-13 00:26:37 -0500344 return m_infoInterestInterval;
akmhoque53353462014-04-22 08:43:45 -0500345 }
346
347 void
alvy5a454952014-12-15 12:49:54 -0600348 setInfoInterestInterval(uint32_t iii)
akmhoque53353462014-04-22 08:43:45 -0500349 {
akmhoque157b0a42014-05-13 00:26:37 -0500350 m_infoInterestInterval = iii;
351 }
352
353 void
354 setHyperbolicState(int32_t ihc)
355 {
356 m_hyperbolicState = ihc;
akmhoque53353462014-04-22 08:43:45 -0500357 }
358
akmhoquefdbddb12014-05-02 18:35:19 -0500359 int32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700360 getHyperbolicState() const
akmhoque53353462014-04-22 08:43:45 -0500361 {
akmhoque157b0a42014-05-13 00:26:37 -0500362 return m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500363 }
364
akmhoque157b0a42014-05-13 00:26:37 -0500365 bool
akmhoque53353462014-04-22 08:43:45 -0500366 setCorR(double cr)
367 {
akmhoque157b0a42014-05-13 00:26:37 -0500368 if ( cr >= 0 ) {
369 m_corR = cr;
370 return true;
371 }
372 return false;
akmhoque53353462014-04-22 08:43:45 -0500373 }
374
375 double
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700376 getCorR() const
akmhoque53353462014-04-22 08:43:45 -0500377 {
378 return m_corR;
379 }
380
381 void
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600382 setCorTheta(const std::vector<double>& ct)
akmhoque53353462014-04-22 08:43:45 -0500383 {
384 m_corTheta = ct;
385 }
386
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600387 std::vector<double>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700388 getCorTheta() const
akmhoque53353462014-04-22 08:43:45 -0500389 {
390 return m_corTheta;
391 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700392
akmhoque53353462014-04-22 08:43:45 -0500393 void
Vince Lehman942eb7b2014-10-02 10:09:27 -0500394 setMaxFacesPerPrefix(uint32_t mfpp)
akmhoque53353462014-04-22 08:43:45 -0500395 {
akmhoque157b0a42014-05-13 00:26:37 -0500396 m_maxFacesPerPrefix = mfpp;
akmhoque53353462014-04-22 08:43:45 -0500397 }
398
Vince Lehman942eb7b2014-10-02 10:09:27 -0500399 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700400 getMaxFacesPerPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500401 {
akmhoque157b0a42014-05-13 00:26:37 -0500402 return m_maxFacesPerPrefix;
akmhoque53353462014-04-22 08:43:45 -0500403 }
404
405 void
akmhoque157b0a42014-05-13 00:26:37 -0500406 setSeqFileDir(const std::string& ssfd)
akmhoque53353462014-04-22 08:43:45 -0500407 {
akmhoque157b0a42014-05-13 00:26:37 -0500408 m_seqFileDir = ssfd;
akmhoque53353462014-04-22 08:43:45 -0500409 }
410
akmhoque157b0a42014-05-13 00:26:37 -0500411 const std::string&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700412 getSeqFileDir() const
akmhoque53353462014-04-22 08:43:45 -0500413 {
akmhoque157b0a42014-05-13 00:26:37 -0500414 return m_seqFileDir;
akmhoque53353462014-04-22 08:43:45 -0500415 }
416
akmhoque674b0b12014-05-20 14:33:28 -0500417 void
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600418 setSyncInterestLifetime(uint32_t syncInterestLifetime)
419 {
420 m_syncInterestLifetime = ndn::time::milliseconds(syncInterestLifetime);
421 }
422
423 const ndn::time::milliseconds&
424 getSyncInterestLifetime() const
425 {
426 return m_syncInterestLifetime;
427 }
428
429 void
akmhoque674b0b12014-05-20 14:33:28 -0500430 writeLog();
akmhoque53353462014-04-22 08:43:45 -0500431
432private:
akmhoque31d1d4b2014-05-05 22:08:14 -0500433 ndn::Name m_routerName;
434 ndn::Name m_siteName;
435 ndn::Name m_network;
akmhoque53353462014-04-22 08:43:45 -0500436
akmhoque31d1d4b2014-05-05 22:08:14 -0500437 ndn::Name m_routerPrefix;
438 ndn::Name m_lsaRouterPrefix;
akmhoque53353462014-04-22 08:43:45 -0500439
akmhoque157b0a42014-05-13 00:26:37 -0500440 ndn::Name m_chronosyncPrefix;
441 ndn::Name m_lsaPrefix;
442
alvy5a454952014-12-15 12:49:54 -0600443 uint32_t m_lsaRefreshTime;
Vince Lehman7b616582014-10-17 16:25:39 -0500444
445 uint32_t m_adjLsaBuildInterval;
446 uint32_t m_firstHelloInterval;
447 uint32_t m_routingCalcInterval;
448
Nick Gordond5c1a372016-10-31 13:56:23 -0500449 uint32_t m_faceDatasetFetchTries;
450 ndn::time::seconds m_faceDatasetFetchInterval;
451
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700452 ndn::time::seconds m_lsaInterestLifetime;
alvy5a454952014-12-15 12:49:54 -0600453 uint32_t m_routerDeadInterval;
akmhoque157b0a42014-05-13 00:26:37 -0500454 std::string m_logLevel;
akmhoque53353462014-04-22 08:43:45 -0500455
akmhoquefdbddb12014-05-02 18:35:19 -0500456 uint32_t m_interestRetryNumber;
alvy5a454952014-12-15 12:49:54 -0600457 uint32_t m_interestResendTime;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700458
alvy5a454952014-12-15 12:49:54 -0600459 uint32_t m_infoInterestInterval;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700460
akmhoque157b0a42014-05-13 00:26:37 -0500461 int32_t m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500462 double m_corR;
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600463 std::vector<double> m_corTheta;
akmhoque53353462014-04-22 08:43:45 -0500464
Vince Lehman942eb7b2014-10-02 10:09:27 -0500465 uint32_t m_maxFacesPerPrefix;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700466
akmhoque157b0a42014-05-13 00:26:37 -0500467 std::string m_seqFileDir;
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -0600468 ndn::time::milliseconds m_syncInterestLifetime;
Ashlesh Gawande982a58f2018-02-14 17:39:12 -0600469
470PUBLIC_WITH_TESTS_ELSE_PRIVATE:
471 static const uint64_t SYNC_VERSION;
akmhoque53353462014-04-22 08:43:45 -0500472};
473
akmhoque53353462014-04-22 08:43:45 -0500474} // namespace nlsr
475
dmcoomese689dd62017-03-29 11:05:12 -0500476#endif // NLSR_CONF_PARAMETER_HPP