blob: 6ec21f53973b6f08b947cdba70767ac229a5797e [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
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
25#include <iostream>
akmhoquefdbddb12014-05-02 18:35:19 -050026#include <boost/cstdint.hpp>
akmhoque31d1d4b2014-05-05 22:08:14 -050027#include <ndn-cxx/common.hpp>
28#include <ndn-cxx/face.hpp>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070029#include <ndn-cxx/util/time.hpp>
akmhoque53353462014-04-22 08:43:45 -050030
akmhoque674b0b12014-05-20 14:33:28 -050031#include "logger.hpp"
32
akmhoque53353462014-04-22 08:43:45 -050033namespace nlsr {
akmhoque157b0a42014-05-13 00:26:37 -050034
35enum {
36 LSA_REFRESH_TIME_MIN = 240,
37 LSA_REFRESH_TIME_DEFAULT = 1800,
38 LSA_REFRESH_TIME_MAX = 7200
39};
40
41enum {
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070042 LSA_INTEREST_LIFETIME_MIN = 1,
43 LSA_INTEREST_LIFETIME_DEFAULT = 4,
44 LSA_INTEREST_LIFETIME_MAX = 60
45};
46
47enum {
Vince Lehman7b616582014-10-17 16:25:39 -050048 ADJ_LSA_BUILD_INTERVAL_MIN = 0,
49 ADJ_LSA_BUILD_INTERVAL_DEFAULT = 5,
50 ADJ_LSA_BUILD_INTERVAL_MAX = 5
51};
52
53enum {
54 FIRST_HELLO_INTERVAL_MIN = 0,
55 FIRST_HELLO_INTERVAL_DEFAULT = 10,
56 FIRST_HELLO_INTERVAL_MAX = 10
57};
58
59enum {
60 ROUTING_CALC_INTERVAL_MIN = 0,
61 ROUTING_CALC_INTERVAL_DEFAULT = 15,
62 ROUTING_CALC_INTERVAL_MAX = 15
63};
64
Nick Gordond5c1a372016-10-31 13:56:23 -050065
66enum {
67 FACE_DATASET_FETCH_TRIES_MIN = 1,
68 FACE_DATASET_FETCH_TRIES_MAX = 10,
69 FACE_DATASET_FETCH_TRIES_DEFAULT = 3
70};
71
72enum {
73 FACE_DATASET_FETCH_INTERVAL_MIN = 1800,
74 FACE_DATASET_FETCH_INTERVAL_MAX = 5400,
75 FACE_DATASET_FETCH_INTERVAL_DEFAULT = 3600
76};
77
Vince Lehman7b616582014-10-17 16:25:39 -050078enum {
akmhoque157b0a42014-05-13 00:26:37 -050079 HELLO_RETRIES_MIN = 1,
80 HELLO_RETRIES_DEFAULT = 3,
81 HELLO_RETRIES_MAX = 15
82};
83
84enum {
85 HELLO_TIMEOUT_MIN = 1,
86 HELLO_TIMEOUT_DEFAULT = 3,
87 HELLO_TIMEOUT_MAX = 15
88};
89
90enum {
91 HELLO_INTERVAL_MIN = 30,
92 HELLO_INTERVAL_DEFAULT = 60,
93 HELLO_INTERVAL_MAX =90
94};
95
96enum {
97 MAX_FACES_PER_PREFIX_MIN = 0,
alvya2228c62014-12-09 10:25:11 -060098 MAX_FACES_PER_PREFIX_DEFAULT = 0,
akmhoque157b0a42014-05-13 00:26:37 -050099 MAX_FACES_PER_PREFIX_MAX = 60
100};
101
Nick Gordon5c467f02016-07-13 13:40:10 -0500102enum HyperbolicState {
akmhoque157b0a42014-05-13 00:26:37 -0500103 HYPERBOLIC_STATE_OFF = 0,
104 HYPERBOLIC_STATE_ON = 1,
alvya2228c62014-12-09 10:25:11 -0600105 HYPERBOLIC_STATE_DRY_RUN = 2,
106 HYPERBOLIC_STATE_DEFAULT = 0
akmhoque157b0a42014-05-13 00:26:37 -0500107};
108
akmhoque53353462014-04-22 08:43:45 -0500109class ConfParameter
110{
111
112public:
113 ConfParameter()
akmhoque157b0a42014-05-13 00:26:37 -0500114 : m_lsaRefreshTime(LSA_REFRESH_TIME_DEFAULT)
Vince Lehman7b616582014-10-17 16:25:39 -0500115 , m_adjLsaBuildInterval(ADJ_LSA_BUILD_INTERVAL_DEFAULT)
116 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
117 , m_routingCalcInterval(ROUTING_CALC_INTERVAL_DEFAULT)
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700118 , m_lsaInterestLifetime(ndn::time::seconds(static_cast<int>(LSA_INTEREST_LIFETIME_DEFAULT)))
Alexander Afanasyev1cf1e102014-08-17 19:47:57 -0700119 , m_routerDeadInterval(2 * LSA_REFRESH_TIME_DEFAULT)
akmhoque157b0a42014-05-13 00:26:37 -0500120 , m_logLevel("INFO")
121 , m_interestRetryNumber(HELLO_RETRIES_DEFAULT)
122 , m_interestResendTime(HELLO_TIMEOUT_DEFAULT)
123 , m_infoInterestInterval(HELLO_INTERVAL_DEFAULT)
124 , m_hyperbolicState(HYPERBOLIC_STATE_OFF)
akmhoque53353462014-04-22 08:43:45 -0500125 , m_corR(0)
akmhoque157b0a42014-05-13 00:26:37 -0500126 , m_maxFacesPerPrefix(MAX_FACES_PER_PREFIX_MIN)
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -0500127 , m_isLog4cxxConfAvailable(false)
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700128 {
129 }
akmhoque53353462014-04-22 08:43:45 -0500130
131 void
akmhoque157b0a42014-05-13 00:26:37 -0500132 setNetwork(const ndn::Name& networkName)
akmhoque53353462014-04-22 08:43:45 -0500133 {
akmhoque157b0a42014-05-13 00:26:37 -0500134 m_network = networkName;
Ashlesh Gawande44395232016-12-13 14:35:29 -0600135
136 m_chronosyncPrefix.append("localhop");
Ashlesh Gawande8bfd1242017-06-21 14:55:27 -0500137 m_chronosyncPrefix.append(m_network);
akmhoquea816bee2014-06-24 14:37:40 -0500138 m_chronosyncPrefix.append("NLSR");
akmhoque157b0a42014-05-13 00:26:37 -0500139 m_chronosyncPrefix.append("sync");
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700140
Ashlesh Gawande6077ea92017-01-19 11:48:29 -0600141 m_lsaPrefix.append("localhop");
142 m_lsaPrefix.append(m_network);
akmhoquea816bee2014-06-24 14:37:40 -0500143 m_lsaPrefix.append("NLSR");
akmhoque157b0a42014-05-13 00:26:37 -0500144 m_lsaPrefix.append("LSA");
akmhoque53353462014-04-22 08:43:45 -0500145 }
146
akmhoque31d1d4b2014-05-05 22:08:14 -0500147 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700148 getNetwork() const
akmhoque53353462014-04-22 08:43:45 -0500149 {
150 return m_network;
151 }
152
153 void
akmhoque157b0a42014-05-13 00:26:37 -0500154 setRouterName(const ndn::Name& routerName)
155 {
156 m_routerName = routerName;
157 }
158
159 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700160 getRouterName() const
akmhoque157b0a42014-05-13 00:26:37 -0500161 {
162 return m_routerName;
163 }
164
165 void
166 setSiteName(const ndn::Name& siteName)
167 {
168 m_siteName = siteName;
169 }
170
171 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700172 getSiteName() const
akmhoque157b0a42014-05-13 00:26:37 -0500173 {
174 return m_siteName;
175 }
176
177 void
akmhoque53353462014-04-22 08:43:45 -0500178 buildRouterPrefix()
179 {
akmhoque31d1d4b2014-05-05 22:08:14 -0500180 m_routerPrefix = m_network;
181 m_routerPrefix.append(m_siteName);
182 m_routerPrefix.append(m_routerName);
akmhoque53353462014-04-22 08:43:45 -0500183 }
184
akmhoque31d1d4b2014-05-05 22:08:14 -0500185 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700186 getRouterPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500187 {
188 return m_routerPrefix;
189 }
190
akmhoque157b0a42014-05-13 00:26:37 -0500191
akmhoque31d1d4b2014-05-05 22:08:14 -0500192 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700193 getChronosyncPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500194 {
akmhoque157b0a42014-05-13 00:26:37 -0500195 return m_chronosyncPrefix;
akmhoque53353462014-04-22 08:43:45 -0500196 }
197
akmhoque157b0a42014-05-13 00:26:37 -0500198 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700199 getLsaPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500200 {
akmhoque157b0a42014-05-13 00:26:37 -0500201 return m_lsaPrefix;
akmhoque53353462014-04-22 08:43:45 -0500202 }
203
204 void
alvy5a454952014-12-15 12:49:54 -0600205 setLsaRefreshTime(uint32_t lrt)
akmhoque53353462014-04-22 08:43:45 -0500206 {
207 m_lsaRefreshTime = lrt;
akmhoque53353462014-04-22 08:43:45 -0500208 }
209
alvy5a454952014-12-15 12:49:54 -0600210 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700211 getLsaRefreshTime() const
akmhoque53353462014-04-22 08:43:45 -0500212 {
213 return m_lsaRefreshTime;
214 }
215
216 void
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700217 setLsaInterestLifetime(const ndn::time::seconds& lifetime)
218 {
219 m_lsaInterestLifetime = lifetime;
220 }
221
222 const ndn::time::seconds&
223 getLsaInterestLifetime() const
224 {
225 return m_lsaInterestLifetime;
226 }
227
228 void
Vince Lehman7b616582014-10-17 16:25:39 -0500229 setAdjLsaBuildInterval(uint32_t interval)
230 {
231 m_adjLsaBuildInterval = interval;
232 }
233
234 uint32_t
235 getAdjLsaBuildInterval() const
236 {
237 return m_adjLsaBuildInterval;
238 }
239
240 void
241 setFirstHelloInterval(uint32_t interval)
242 {
243 m_firstHelloInterval = interval;
244 }
245
246 uint32_t
247 getFirstHelloInterval() const
248 {
249 return m_firstHelloInterval;
250 }
251
252 void
253 setRoutingCalcInterval(uint32_t interval)
254 {
255 m_routingCalcInterval = interval;
256 }
257
258 uint32_t
259 getRoutingCalcInterval() const
260 {
261 return m_routingCalcInterval;
262 }
263
264 void
alvy5a454952014-12-15 12:49:54 -0600265 setRouterDeadInterval(uint32_t rdt)
akmhoque53353462014-04-22 08:43:45 -0500266 {
267 m_routerDeadInterval = rdt;
268 }
269
alvy5a454952014-12-15 12:49:54 -0600270 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700271 getRouterDeadInterval() const
akmhoque53353462014-04-22 08:43:45 -0500272 {
273 return m_routerDeadInterval;
274 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700275
276 void
Nick Gordond5c1a372016-10-31 13:56:23 -0500277 setFaceDatasetFetchTries(uint32_t count)
278 {
279 m_faceDatasetFetchTries = count;
280 }
281
282 uint32_t
283 getFaceDatasetFetchTries() const
284 {
285 return m_faceDatasetFetchTries;
286 }
287
288 void
289 setFaceDatasetFetchInterval(ndn::time::seconds interval)
290 {
291 m_faceDatasetFetchInterval = interval;
292 }
293
294 const ndn::time::seconds
295 getFaceDatasetFetchInterval() const
296 {
297 return m_faceDatasetFetchInterval;
298 }
299
300 void
akmhoque157b0a42014-05-13 00:26:37 -0500301 setLogLevel(const std::string& logLevel)
302 {
303 m_logLevel = logLevel;
304 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700305
306 const std::string&
307 getLogLevel() const
akmhoque157b0a42014-05-13 00:26:37 -0500308 {
309 return m_logLevel;
310 }
akmhoque53353462014-04-22 08:43:45 -0500311
312 void
akmhoque157b0a42014-05-13 00:26:37 -0500313 setInterestRetryNumber(uint32_t irn)
akmhoque53353462014-04-22 08:43:45 -0500314 {
akmhoque157b0a42014-05-13 00:26:37 -0500315 m_interestRetryNumber = irn;
316 }
317
318 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700319 getInterestRetryNumber() const
akmhoque157b0a42014-05-13 00:26:37 -0500320 {
321 return m_interestRetryNumber;
322 }
323
324 void
alvy5a454952014-12-15 12:49:54 -0600325 setInterestResendTime(uint32_t irt)
akmhoque157b0a42014-05-13 00:26:37 -0500326 {
327 m_interestResendTime = irt;
akmhoque53353462014-04-22 08:43:45 -0500328 }
329
alvy5a454952014-12-15 12:49:54 -0600330 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700331 getInterestResendTime() const
akmhoque53353462014-04-22 08:43:45 -0500332 {
akmhoque157b0a42014-05-13 00:26:37 -0500333 return m_interestResendTime;
akmhoque53353462014-04-22 08:43:45 -0500334 }
335
alvy5a454952014-12-15 12:49:54 -0600336 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700337 getInfoInterestInterval() const
akmhoque53353462014-04-22 08:43:45 -0500338 {
akmhoque157b0a42014-05-13 00:26:37 -0500339 return m_infoInterestInterval;
akmhoque53353462014-04-22 08:43:45 -0500340 }
341
342 void
alvy5a454952014-12-15 12:49:54 -0600343 setInfoInterestInterval(uint32_t iii)
akmhoque53353462014-04-22 08:43:45 -0500344 {
akmhoque157b0a42014-05-13 00:26:37 -0500345 m_infoInterestInterval = iii;
346 }
347
348 void
349 setHyperbolicState(int32_t ihc)
350 {
351 m_hyperbolicState = ihc;
akmhoque53353462014-04-22 08:43:45 -0500352 }
353
akmhoquefdbddb12014-05-02 18:35:19 -0500354 int32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700355 getHyperbolicState() const
akmhoque53353462014-04-22 08:43:45 -0500356 {
akmhoque157b0a42014-05-13 00:26:37 -0500357 return m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500358 }
359
akmhoque157b0a42014-05-13 00:26:37 -0500360 bool
akmhoque53353462014-04-22 08:43:45 -0500361 setCorR(double cr)
362 {
akmhoque157b0a42014-05-13 00:26:37 -0500363 if ( cr >= 0 ) {
364 m_corR = cr;
365 return true;
366 }
367 return false;
akmhoque53353462014-04-22 08:43:45 -0500368 }
369
370 double
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700371 getCorR() const
akmhoque53353462014-04-22 08:43:45 -0500372 {
373 return m_corR;
374 }
375
376 void
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600377 setCorTheta(const std::vector<double>& ct)
akmhoque53353462014-04-22 08:43:45 -0500378 {
379 m_corTheta = ct;
380 }
381
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600382 std::vector<double>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700383 getCorTheta() const
akmhoque53353462014-04-22 08:43:45 -0500384 {
385 return m_corTheta;
386 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700387
akmhoque53353462014-04-22 08:43:45 -0500388 void
Vince Lehman942eb7b2014-10-02 10:09:27 -0500389 setMaxFacesPerPrefix(uint32_t mfpp)
akmhoque53353462014-04-22 08:43:45 -0500390 {
akmhoque157b0a42014-05-13 00:26:37 -0500391 m_maxFacesPerPrefix = mfpp;
akmhoque53353462014-04-22 08:43:45 -0500392 }
393
Vince Lehman942eb7b2014-10-02 10:09:27 -0500394 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700395 getMaxFacesPerPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500396 {
akmhoque157b0a42014-05-13 00:26:37 -0500397 return m_maxFacesPerPrefix;
akmhoque53353462014-04-22 08:43:45 -0500398 }
399
400 void
akmhoque674b0b12014-05-20 14:33:28 -0500401 setLogDir(const std::string& logDir)
402 {
403 m_logDir = logDir;
404 }
405
406 const std::string&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700407 getLogDir() const
akmhoque674b0b12014-05-20 14:33:28 -0500408 {
409 return m_logDir;
410 }
411
412 void
akmhoque157b0a42014-05-13 00:26:37 -0500413 setSeqFileDir(const std::string& ssfd)
akmhoque53353462014-04-22 08:43:45 -0500414 {
akmhoque157b0a42014-05-13 00:26:37 -0500415 m_seqFileDir = ssfd;
akmhoque53353462014-04-22 08:43:45 -0500416 }
417
akmhoque157b0a42014-05-13 00:26:37 -0500418 const std::string&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700419 getSeqFileDir() const
akmhoque53353462014-04-22 08:43:45 -0500420 {
akmhoque157b0a42014-05-13 00:26:37 -0500421 return m_seqFileDir;
akmhoque53353462014-04-22 08:43:45 -0500422 }
423
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -0500424 bool
425 isLog4CxxConfAvailable() const
426 {
427 return m_isLog4cxxConfAvailable;
428 }
429
430 void
431 setLog4CxxConfPath(const std::string& path)
432 {
433 m_log4CxxConfPath = path;
434 m_isLog4cxxConfAvailable = true;
435 }
436
437 const std::string&
438 getLog4CxxConfPath() const
439 {
440 return m_log4CxxConfPath;
441 }
442
akmhoque674b0b12014-05-20 14:33:28 -0500443 void
444 writeLog();
akmhoque53353462014-04-22 08:43:45 -0500445
446private:
akmhoque31d1d4b2014-05-05 22:08:14 -0500447 ndn::Name m_routerName;
448 ndn::Name m_siteName;
449 ndn::Name m_network;
akmhoque53353462014-04-22 08:43:45 -0500450
akmhoque31d1d4b2014-05-05 22:08:14 -0500451 ndn::Name m_routerPrefix;
452 ndn::Name m_lsaRouterPrefix;
akmhoque53353462014-04-22 08:43:45 -0500453
akmhoque157b0a42014-05-13 00:26:37 -0500454 ndn::Name m_chronosyncPrefix;
455 ndn::Name m_lsaPrefix;
456
alvy5a454952014-12-15 12:49:54 -0600457 uint32_t m_lsaRefreshTime;
Vince Lehman7b616582014-10-17 16:25:39 -0500458
459 uint32_t m_adjLsaBuildInterval;
460 uint32_t m_firstHelloInterval;
461 uint32_t m_routingCalcInterval;
462
Nick Gordond5c1a372016-10-31 13:56:23 -0500463 uint32_t m_faceDatasetFetchTries;
464 ndn::time::seconds m_faceDatasetFetchInterval;
465
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700466 ndn::time::seconds m_lsaInterestLifetime;
alvy5a454952014-12-15 12:49:54 -0600467 uint32_t m_routerDeadInterval;
akmhoque157b0a42014-05-13 00:26:37 -0500468 std::string m_logLevel;
akmhoque53353462014-04-22 08:43:45 -0500469
akmhoquefdbddb12014-05-02 18:35:19 -0500470 uint32_t m_interestRetryNumber;
alvy5a454952014-12-15 12:49:54 -0600471 uint32_t m_interestResendTime;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700472
alvy5a454952014-12-15 12:49:54 -0600473 uint32_t m_infoInterestInterval;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700474
akmhoque157b0a42014-05-13 00:26:37 -0500475 int32_t m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500476 double m_corR;
Muktadir R Chowdhuryb00dc2a2016-11-05 10:48:58 -0600477 std::vector<double> m_corTheta;
akmhoque53353462014-04-22 08:43:45 -0500478
Vince Lehman942eb7b2014-10-02 10:09:27 -0500479 uint32_t m_maxFacesPerPrefix;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700480
akmhoque674b0b12014-05-20 14:33:28 -0500481 std::string m_logDir;
akmhoque157b0a42014-05-13 00:26:37 -0500482 std::string m_seqFileDir;
akmhoque53353462014-04-22 08:43:45 -0500483
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -0500484 bool m_isLog4cxxConfAvailable;
485 std::string m_log4CxxConfPath;
akmhoque53353462014-04-22 08:43:45 -0500486};
487
akmhoque53353462014-04-22 08:43:45 -0500488} // namespace nlsr
489
dmcoomese689dd62017-03-29 11:05:12 -0500490#endif // NLSR_CONF_PARAMETER_HPP