akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014 University of Memphis, |
| 4 | * Regents of the University of California |
| 5 | * |
| 6 | * This file is part of NLSR (Named-data Link State Routing). |
| 7 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 8 | * |
| 9 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 10 | * of the GNU General Public License as published by the Free Software Foundation, |
| 11 | * either version 3 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 14 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 15 | * PURPOSE. See the GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 19 | * |
| 20 | * \author A K M Mahmudul Hoque <ahoque1@memphis.edu> |
| 21 | * |
| 22 | **/ |
Muktadir R Chowdhury | bfa2760 | 2014-10-31 10:57:41 -0500 | [diff] [blame^] | 23 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 24 | #include <cstdlib> |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame] | 25 | #include <string> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 26 | #include <sstream> |
akmhoque | 05d5fcf | 2014-04-15 14:58:45 -0500 | [diff] [blame] | 27 | #include <cstdio> |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 28 | #include <unistd.h> |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 29 | |
| 30 | #include "nlsr.hpp" |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 31 | #include "adjacent.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 32 | #include "logger.hpp" |
akmhoque | 2bb198e | 2014-02-28 11:46:27 -0600 | [diff] [blame] | 33 | |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 34 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 35 | namespace nlsr { |
| 36 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 37 | INIT_LOGGER("nlsr"); |
| 38 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 39 | using namespace ndn; |
| 40 | using namespace std; |
| 41 | |
| 42 | void |
| 43 | Nlsr::registrationFailed(const ndn::Name& name) |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 44 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 45 | std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl; |
| 46 | throw Error("Error: Prefix registration failed"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 47 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 48 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 49 | void |
| 50 | Nlsr::onRegistrationSuccess(const ndn::Name& name) |
| 51 | { |
| 52 | } |
akmhoque | 1fd8c1e | 2014-02-19 19:41:49 -0600 | [diff] [blame] | 53 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 54 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 55 | Nlsr::setInfoInterestFilter() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 56 | { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 57 | ndn::Name name(m_confParam.getRouterPrefix()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 58 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 59 | getNlsrFace().setInterestFilter(name, |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 60 | ndn::bind(&HelloProtocol::processInterest, |
| 61 | &m_helloProtocol, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 62 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 63 | ndn::bind(&Nlsr::registrationFailed, this, _1), |
| 64 | m_defaultIdentity, |
| 65 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | void |
| 69 | Nlsr::setLsaInterestFilter() |
| 70 | { |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 71 | ndn::Name name = m_confParam.getLsaPrefix(); |
akmhoque | 50125a9 | 2014-06-30 08:54:17 -0500 | [diff] [blame] | 72 | name.append(m_confParam.getSiteName()); |
| 73 | name.append(m_confParam.getRouterName()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 74 | _LOG_DEBUG("Setting interest filter for name: " << name); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 75 | getNlsrFace().setInterestFilter(name, |
| 76 | ndn::bind(&Lsdb::processInterest, |
| 77 | &m_nlsrLsdb, _1, _2), |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 78 | ndn::bind(&Nlsr::onRegistrationSuccess, this, _1), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 79 | ndn::bind(&Nlsr::registrationFailed, this, _1), |
| 80 | m_defaultIdentity, |
| 81 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 85 | Nlsr::setStrategies() |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 86 | { |
| 87 | std::string strategy("ndn:/localhost/nfd/strategy/broadcast"); |
akmhoque | 3cb0cfc | 2014-06-24 10:32:24 -0500 | [diff] [blame] | 88 | ndn::Name broadcastKeyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 89 | broadcastKeyPrefix.append("KEYS"); |
akmhoque | 393d4ff | 2014-07-16 14:27:03 -0500 | [diff] [blame] | 90 | m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy, 0); |
| 91 | m_fib.setStrategy(broadcastKeyPrefix, strategy, 0); |
| 92 | m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy, 0); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | void |
akmhoque | 0494c25 | 2014-07-23 23:46:44 -0500 | [diff] [blame] | 96 | Nlsr::daemonize() |
| 97 | { |
| 98 | pid_t process_id = 0; |
| 99 | pid_t sid = 0; |
| 100 | process_id = fork(); |
| 101 | if (process_id < 0){ |
| 102 | std::cerr << "Daemonization failed!" << std::endl; |
| 103 | throw Error("Error: Daemonization process- fork failed!"); |
| 104 | } |
| 105 | if (process_id > 0) { |
| 106 | _LOG_DEBUG("Process daemonized. Process id: " << process_id); |
| 107 | exit(0); |
| 108 | } |
| 109 | |
| 110 | umask(0); |
| 111 | sid = setsid(); |
| 112 | if(sid < 0) { |
| 113 | throw Error("Error: Daemonization process- setting id failed!"); |
| 114 | } |
| 115 | |
| 116 | if (chdir("/") < 0) { |
| 117 | throw Error("Error: Daemonization process-chdir failed!"); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 122 | Nlsr::initialize() |
| 123 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 124 | _LOG_DEBUG("Initializing Nlsr"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 125 | m_confParam.buildRouterPrefix(); |
Alexander Afanasyev | 411ee4b | 2014-08-16 23:17:03 -0700 | [diff] [blame] | 126 | m_nlsrLsdb.setLsaRefreshTime(ndn::time::seconds(m_confParam.getLsaRefreshTime())); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 127 | m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri()); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 128 | m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime()); |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 129 | m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir()); |
| 130 | m_sequencingManager.initiateSeqNoFromFile(); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 131 | m_syncLogicHandler.setSyncPrefix(m_confParam.getChronosyncPrefix().toUri()); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 132 | /* Logging start */ |
| 133 | m_confParam.writeLog(); |
| 134 | m_adjacencyList.writeLog(); |
| 135 | m_namePrefixList.writeLog(); |
| 136 | /* Logging end */ |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 137 | initializeKey(); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 138 | setStrategies(); |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 139 | _LOG_DEBUG("Default NLSR identity: " << m_defaultIdentity); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 140 | setInfoInterestFilter(); |
| 141 | setLsaInterestFilter(); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 142 | m_nlsrLsdb.buildAndInstallOwnNameLsa(); |
| 143 | m_nlsrLsdb.buildAndInstallOwnCoordinateLsa(); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 144 | |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 145 | registerKeyPrefix(); |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame] | 146 | |
| 147 | // Set event intervals |
| 148 | setFirstHelloInterval(m_confParam.getFirstHelloInterval()); |
| 149 | m_helloProtocol.setAdjLsaBuildInterval(m_confParam.getAdjLsaBuildInterval()); |
| 150 | m_routingTable.setRoutingCalcInterval(m_confParam.getRoutingCalcInterval()); |
| 151 | |
| 152 | m_helloProtocol.scheduleInterest(m_firstHelloInterval); |
Vince Lehman | 0913112 | 2014-09-09 17:10:11 -0500 | [diff] [blame] | 153 | |
| 154 | // Need to set direct neighbors' costs to 0 for hyperbolic routing |
| 155 | if (m_confParam.getHyperbolicState() == HYPERBOLIC_STATE_ON) { |
| 156 | |
| 157 | std::list<Adjacent>& neighbors = m_adjacencyList.getAdjList(); |
| 158 | |
| 159 | for (std::list<Adjacent>::iterator it = neighbors.begin(); it != neighbors.end(); ++it) { |
| 160 | it->setLinkCost(0); |
| 161 | } |
| 162 | } |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | void |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 166 | Nlsr::initializeKey() |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 167 | { |
| 168 | m_defaultIdentity = m_confParam.getRouterPrefix(); |
| 169 | m_defaultIdentity.append("NLSR"); |
| 170 | |
akmhoque | 102aea4 | 2014-08-04 10:22:12 -0500 | [diff] [blame] | 171 | try |
| 172 | { |
| 173 | m_keyChain.deleteIdentity(m_defaultIdentity); |
| 174 | } |
| 175 | catch (std::exception& e) |
| 176 | { |
| 177 | } |
akmhoque | 443ad81 | 2014-07-29 10:26:56 -0500 | [diff] [blame] | 178 | |
Yingdi Yu | 9a18bfb | 2014-06-19 14:06:21 -0700 | [diff] [blame] | 179 | ndn::Name keyName = m_keyChain.generateRsaKeyPairAsDefault(m_defaultIdentity, true); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 180 | |
Yingdi Yu | 191f5fa | 2014-08-06 17:08:52 -0700 | [diff] [blame] | 181 | ndn::shared_ptr<ndn::IdentityCertificate> certificate = |
| 182 | ndn::make_shared<ndn::IdentityCertificate>(); |
| 183 | ndn::shared_ptr<ndn::PublicKey> pubKey = m_keyChain.getPublicKey(keyName); |
| 184 | Name certificateName = keyName.getPrefix(-1); |
| 185 | certificateName.append("KEY").append(keyName.get(-1)).append("ID-CERT").appendVersion(); |
| 186 | certificate->setName(certificateName); |
| 187 | certificate->setNotBefore(time::system_clock::now() - time::days(1)); |
| 188 | certificate->setNotAfter(time::system_clock::now() + time::days(7300)); // ~20 years |
| 189 | certificate->setPublicKeyInfo(*pubKey); |
| 190 | certificate->addSubjectDescription(CertificateSubjectDescription(ndn::oid::ATTRIBUTE_NAME, |
| 191 | keyName.toUri())); |
| 192 | certificate->encode(); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 193 | m_keyChain.signByIdentity(*certificate, m_confParam.getRouterPrefix()); |
| 194 | |
| 195 | m_keyChain.addCertificateAsIdentityDefault(*certificate); |
| 196 | loadCertToPublish(certificate); |
| 197 | |
| 198 | m_defaultCertName = certificate->getName(); |
| 199 | } |
| 200 | |
| 201 | void |
| 202 | Nlsr::registerKeyPrefix() |
| 203 | { |
| 204 | ndn::Name keyPrefix = DEFAULT_BROADCAST_PREFIX; |
| 205 | keyPrefix.append("KEYS"); |
| 206 | m_nlsrFace.setInterestFilter(keyPrefix, |
Yingdi Yu | 6a3a4dd | 2014-06-20 14:10:39 -0700 | [diff] [blame] | 207 | ndn::bind(&Nlsr::onKeyInterest, |
| 208 | this, _1, _2), |
| 209 | ndn::bind(&Nlsr::onKeyPrefixRegSuccess, this, _1), |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 210 | ndn::bind(&Nlsr::registrationFailed, this, _1), |
| 211 | m_defaultIdentity, |
| 212 | ndn::nfd::ROUTE_FLAG_CAPTURE); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 213 | |
| 214 | } |
| 215 | |
| 216 | void |
| 217 | Nlsr::onKeyInterest(const ndn::Name& name, const ndn::Interest& interest) |
| 218 | { |
| 219 | const ndn::Name& interestName = interest.getName(); |
| 220 | |
| 221 | ndn::Name certName = interestName.getSubName(name.size()); |
| 222 | |
| 223 | if (certName[-2].toUri() == "ID-CERT") |
| 224 | { |
| 225 | certName = certName.getPrefix(-1); |
| 226 | } |
| 227 | else if (certName[-1].toUri() != "ID-CERT") |
| 228 | return; //Wrong key interest. |
| 229 | |
| 230 | ndn::shared_ptr<const ndn::IdentityCertificate> cert = getCertificate(certName); |
| 231 | |
| 232 | if (!static_cast<bool>(cert)) |
| 233 | return; // cert is not found |
| 234 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 235 | ndn::shared_ptr<ndn::Data> data = ndn::make_shared<ndn::Data>(); |
| 236 | data->setName(interestName); |
| 237 | data->setContent(cert->wireEncode()); |
| 238 | m_keyChain.signWithSha256(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 239 | |
akmhoque | 69c9aa9 | 2014-07-23 15:15:05 -0500 | [diff] [blame] | 240 | m_nlsrFace.put(*data); |
Yingdi Yu | 20e3a6e | 2014-05-26 23:16:10 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | void |
| 244 | Nlsr::onKeyPrefixRegSuccess(const ndn::Name& name) |
| 245 | { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 246 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 247 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 248 | void |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 249 | Nlsr::onDestroyFaceSuccess(const ndn::nfd::ControlParameters& commandSuccessResult) |
| 250 | { |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | void |
| 254 | Nlsr::onDestroyFaceFailure(int32_t code, const std::string& error) |
| 255 | { |
| 256 | std::cerr << error << " (code: " << code << ")"; |
| 257 | throw Error("Error: Face destruction failed"); |
| 258 | } |
| 259 | |
| 260 | void |
| 261 | Nlsr::destroyFaces() |
| 262 | { |
| 263 | std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList(); |
| 264 | for (std::list<Adjacent>::iterator it = adjacents.begin(); |
| 265 | it != adjacents.end(); it++) { |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 266 | m_fib.destroyFace((*it).getConnectingFaceUri(), |
| 267 | ndn::bind(&Nlsr::onDestroyFaceSuccess, this, _1), |
| 268 | ndn::bind(&Nlsr::onDestroyFaceFailure, this, _1, _2)); |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 272 | |
| 273 | |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 274 | |
| 275 | void |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 276 | Nlsr::onFaceEventNotification(const ndn::nfd::FaceEventNotification& faceEventNotification) |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 277 | { |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 278 | ndn::nfd::FaceEventKind kind = faceEventNotification.getKind(); |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 279 | _LOG_DEBUG("Nlsr::onFaceEventNotification called"); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 280 | if (kind == ndn::nfd::FACE_EVENT_DESTROYED) { |
| 281 | uint64_t faceId = faceEventNotification.getFaceId(); |
| 282 | Adjacent *adjacent = m_adjacencyList.findAdjacent(faceId); |
| 283 | if (adjacent != 0) { |
akmhoque | 060d302 | 2014-08-12 13:35:06 -0500 | [diff] [blame] | 284 | _LOG_DEBUG("Face to " << adjacent->getName() << " with face id: " |
| 285 | << faceId << " deleted"); |
akmhoque | c04e727 | 2014-07-02 11:00:14 -0500 | [diff] [blame] | 286 | adjacent->setFaceId(0); |
| 287 | } |
| 288 | } |
akmhoque | e176515 | 2014-06-30 11:32:01 -0500 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | |
| 292 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 293 | Nlsr::startEventLoop() |
| 294 | { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 295 | m_nlsrFace.processEvents(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 296 | } |
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame] | 297 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 298 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 299 | Nlsr::usage(const string& progname) |
| 300 | { |
akmhoque | 4826599 | 2014-08-10 08:27:13 -0500 | [diff] [blame] | 301 | std::cout << "Usage: " << progname << " [OPTIONS...]" << std::endl; |
| 302 | std::cout << " NDN routing...." << std::endl; |
Vince Lehman | b722b10 | 2014-08-24 16:33:49 -0500 | [diff] [blame] | 303 | std::cout << " -d Run in daemon mode" << std::endl; |
| 304 | std::cout << " -f <FILE> Specify configuration file name" << std::endl; |
| 305 | std::cout << " -V Display version information" << std::endl; |
| 306 | std::cout << " -h Display this help message" << std::endl; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 307 | } |
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 308 | |
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame] | 309 | |
| 310 | } // namespace nlsr |