NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
tables-config-section.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_MGMT_TABLES_CONFIG_SECTION_HPP
27 #define NFD_MGMT_TABLES_CONFIG_SECTION_HPP
28 
29 #include "fw/forwarder.hpp"
30 #include "core/config-file.hpp"
31 
32 namespace nfd {
33 
70 class TablesConfigSection : noncopyable
71 {
72 public:
73  explicit
74  TablesConfigSection(Forwarder& forwarder);
75 
76  void
77  setConfigFile(ConfigFile& configFile);
78 
81  void
83 
84 private:
85  void
86  processConfig(const ConfigSection& section, bool isDryRun);
87 
88  void
89  processStrategyChoiceSection(const ConfigSection& section, bool isDryRun);
90 
91  void
92  processNetworkRegionSection(const ConfigSection& section, bool isDryRun);
93 
94 private:
95  static const size_t DEFAULT_CS_MAX_PACKETS;
96 
97  Forwarder& m_forwarder;
98 
99  bool m_isConfigured;
100 };
101 
102 } // namespace nfd
103 
104 #endif // NFD_MGMT_TABLES_CONFIG_SECTION_HPP
configuration file parsing utility
Definition: config-file.hpp:50
main class of NFD
Definition: forwarder.hpp:54
void ensureConfigured()
apply default configuration, if tables section was omitted in configuration file
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
boost::property_tree::ptree ConfigSection
handles 'tables' config section
void setConfigFile(ConfigFile &configFile)
TablesConfigSection(Forwarder &forwarder)