Classes | |
| class | AutoPrefixPropagator |
| provides automatic prefix propagation feature More... | |
| class | ClientToNlsrReadvertisePolicy |
| a policy to readvertise routes registered by end hosts into NLSR More... | |
| class | FibUpdate |
| represents a FIB update More... | |
| class | FibUpdater |
| computes FibUpdates based on updates to the RIB and sends them to NFD More... | |
| class | NfdRibReadvertiseDestination |
| a readvertise destination using NFD RIB management protocol More... | |
| class | PropagatedEntry |
| represents an entry for prefix propagation. More... | |
| class | Readvertise |
| readvertise a subset of routes to a destination according to a policy More... | |
| struct | ReadvertiseAction |
| a decision made by readvertise policy More... | |
| class | ReadvertiseDestination |
| a destination to readvertise into More... | |
| class | ReadvertisedRoute |
| state of a readvertised route More... | |
| class | ReadvertisePolicy |
| a policy to decide whether to readvertise a route, and what prefix to readvertise More... | |
| class | Rib |
| represents the Routing Information Base More... | |
| class | RibEntry |
| represents a RIB entry, which contains one or more Routes with the same prefix More... | |
| class | RibManager |
| struct | RibRouteRef |
| references a route More... | |
| class | RibUpdate |
| RibUpdate. More... | |
| class | RibUpdateBatch |
| represents a collection of RibUpdates to be applied to a single FaceId More... | |
| class | Route |
| represents a route for a name prefix More... | |
| class | Service |
| initializes and executes NFD-RIB service thread More... | |
Typedefs | |
| using | ReadvertisedRouteContainer = std::set< ReadvertisedRoute > |
| typedef std::list< RibUpdate > | RibUpdateList |
Enumerations | |
| enum | PropagationStatus { PropagationStatus::NEW, PropagationStatus::PROPAGATING, PropagationStatus::PROPAGATED, PropagationStatus::PROPAGATE_FAIL } |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const FibUpdate &update) |
| void | operator<< (std::ostream &out, PropagationStatus status) |
| static time::milliseconds | randomizeTimer (time::milliseconds baseTimer) |
| bool | operator< (const ReadvertisedRoute &lhs, const ReadvertisedRoute &rhs) |
| std::ostream & | operator<< (std::ostream &os, const RibEntry &entry) |
| std::ostream & | operator<< (std::ostream &os, const RibUpdate::Action action) |
| std::ostream & | operator<< (std::ostream &os, const RibUpdate &update) |
| bool | operator< (const RibRouteRef &lhs, const RibRouteRef &rhs) |
| static bool | sortRoutes (const Route &lhs, const Route &rhs) |
| std::ostream & | operator<< (std::ostream &os, const Rib &rib) |
| bool | operator== (const Route &lhs, const Route &rhs) |
| std::ostream & | operator<< (std::ostream &os, const Route &route) |
| bool | operator!= (const Route &lhs, const Route &rhs) |
| bool | compareFaceIdAndOrigin (const Route &lhs, const Route &rhs) |
| bool | compareFaceId (const Route &route, const uint64_t faceId) |
Variables | |
| AutoPrefixPropagator | |
| const Name | LOCAL_REGISTRATION_PREFIX ("/localhost") |
| const Name | LINK_LOCAL_NFD_PREFIX ("/localhop/nfd") |
| const name::Component | IGNORE_COMMPONENT ("nrd") |
| const time::seconds | PREFIX_PROPAGATION_DEFAULT_REFRESH_INTERVAL = time::seconds(25) |
| const time::seconds | PREFIX_PROPAGATION_MAX_REFRESH_INTERVAL = time::seconds(600) |
| const time::seconds | PREFIX_PROPAGATION_DEFAULT_BASE_RETRY_WAIT = time::seconds(50) |
| const time::seconds | PREFIX_PROPAGATION_DEFAULT_MAX_RETRY_WAIT = time::seconds(3600) |
| const uint64_t | PREFIX_PROPAGATION_DEFAULT_COST = 15 |
| const time::milliseconds | PREFIX_PROPAGATION_DEFAULT_TIMEOUT = time::milliseconds(10000) |
| FibUpdater | |
| NfdRibReadvertiseDestination | |
| ReadvertiseDestination | |
| Readvertise | |
| RibManager | |
| static const std::string | INTERNAL_CONFIG = "internal://nfd.conf" |
| using nfd::rib::ReadvertisedRouteContainer = typedef std::set<ReadvertisedRoute> |
Definition at line 57 of file readvertised-route.hpp.
| typedef std::list<RibUpdate> nfd::rib::RibUpdateList |
Definition at line 35 of file rib-update-batch.hpp.
|
strong |
| Enumerator | |
|---|---|
| NEW |
initial status |
| PROPAGATING |
is being propagated |
| PROPAGATED |
has been propagated successfully |
| PROPAGATE_FAIL |
has failed in propagation |
Definition at line 34 of file propagated-entry.hpp.
|
inline |
Definition at line 74 of file fib-update.hpp.
References nfd::rib::FibUpdate::action, nfd::rib::FibUpdate::ADD_NEXTHOP, nfd::rib::FibUpdate::cost, nfd::rib::FibUpdate::faceId, and nfd::rib::FibUpdate::name.
Referenced by compareFaceId(), nfd::rib::Rib::empty(), nfd::rib::RibEntry::end(), and nfd::rib::RibUpdate::getRoute().
| void nfd::rib::operator<< | ( | std::ostream & | out, |
| PropagationStatus | status | ||
| ) |
Definition at line 33 of file propagated-entry.cpp.
References NEW, PROPAGATE_FAIL, PROPAGATED, and PROPAGATING.
|
static |
Definition at line 39 of file readvertise.cpp.
References nfd::getGlobalRng(), and websocketpp::lib::asio::milliseconds().
Referenced by nfd::rib::Readvertise::Readvertise().
|
inline |
Definition at line 52 of file readvertised-route.hpp.
References nfd::rib::ReadvertisedRoute::prefix.
| std::ostream & nfd::rib::operator<< | ( | std::ostream & | os, |
| const RibEntry & | entry | ||
| ) |
Definition at line 249 of file rib-entry.cpp.
References nfd::rib::RibEntry::getName().
| std::ostream & nfd::rib::operator<< | ( | std::ostream & | os, |
| const RibUpdate::Action | action | ||
| ) |
Definition at line 37 of file rib-update.cpp.
References nfd::rib::RibUpdate::REGISTER, nfd::rib::RibUpdate::REMOVE_FACE, and nfd::rib::RibUpdate::UNREGISTER.
| std::ostream & nfd::rib::operator<< | ( | std::ostream & | os, |
| const RibUpdate & | update | ||
| ) |
Definition at line 55 of file rib-update.cpp.
References nfd::rib::RibUpdate::getAction(), nfd::rib::RibUpdate::getName(), and nfd::rib::RibUpdate::getRoute().
| bool nfd::rib::operator< | ( | const RibRouteRef & | lhs, |
| const RibRouteRef & | rhs | ||
| ) |
Definition at line 37 of file rib.cpp.
References nfd::rib::RibRouteRef::entry, and nfd::rib::RibRouteRef::route.
Definition at line 44 of file rib.cpp.
References nfd::rib::Route::faceId.
Referenced by nfd::rib::Rib::findDescendantsForNonInsertedName().
| std::ostream & nfd::rib::operator<< | ( | std::ostream & | os, |
| const Rib & | rib | ||
| ) |
Definition at line 41 of file route.cpp.
References nfd::rib::Route::cost, nfd::rib::Route::expires, nfd::rib::Route::faceId, nfd::rib::Route::flags, and nfd::rib::Route::origin.
| std::ostream & nfd::rib::operator<< | ( | std::ostream & | os, |
| const Route & | route | ||
| ) |
Definition at line 51 of file route.cpp.
References nfd::rib::Route::cost, nfd::rib::Route::expires, nfd::rib::Route::faceId, nfd::rib::Route::flags, websocketpp::lib::asio::milliseconds(), ndn::time::steady_clock::now(), and nfd::rib::Route::origin.
Definition at line 83 of file route.hpp.
References nfd::rib::Route::faceId, and nfd::rib::Route::origin.
Referenced by nfd::rib::RibEntry::findRoute().
|
inline |
Definition at line 89 of file route.hpp.
References nfd::rib::Route::faceId, and operator<<().
Referenced by nfd::rib::RibEntry::findInheritedRoute(), nfd::rib::RibEntry::hasFaceId(), and nfd::rib::RibEntry::removeInheritedRoute().
Definition at line 38 of file auto-prefix-propagator.cpp.
| const Name nfd::rib::LOCAL_REGISTRATION_PREFIX("/localhost") |
Referenced by nfd::rib::AutoPrefixPropagator::disable().
| const Name nfd::rib::LINK_LOCAL_NFD_PREFIX("/localhop/nfd") |
| const name::Component nfd::rib::IGNORE_COMMPONENT("nrd") |
Referenced by nfd::rib::AutoPrefixPropagator::disable().
| const time::seconds nfd::rib::PREFIX_PROPAGATION_DEFAULT_REFRESH_INTERVAL = time::seconds(25) |
Definition at line 46 of file auto-prefix-propagator.cpp.
Referenced by nfd::rib::AutoPrefixPropagator::loadConfig().
| const time::seconds nfd::rib::PREFIX_PROPAGATION_MAX_REFRESH_INTERVAL = time::seconds(600) |
Definition at line 47 of file auto-prefix-propagator.cpp.
| const time::seconds nfd::rib::PREFIX_PROPAGATION_DEFAULT_BASE_RETRY_WAIT = time::seconds(50) |
Definition at line 48 of file auto-prefix-propagator.cpp.
Referenced by nfd::rib::AutoPrefixPropagator::loadConfig().
| const time::seconds nfd::rib::PREFIX_PROPAGATION_DEFAULT_MAX_RETRY_WAIT = time::seconds(3600) |
Definition at line 49 of file auto-prefix-propagator.cpp.
Referenced by nfd::rib::AutoPrefixPropagator::loadConfig().
| const uint64_t nfd::rib::PREFIX_PROPAGATION_DEFAULT_COST = 15 |
Definition at line 50 of file auto-prefix-propagator.cpp.
| const time::milliseconds nfd::rib::PREFIX_PROPAGATION_DEFAULT_TIMEOUT = time::milliseconds(10000) |
Definition at line 51 of file auto-prefix-propagator.cpp.
Definition at line 37 of file fib-updater.cpp.
Definition at line 37 of file nfd-rib-readvertise-destination.cpp.
Definition at line 32 of file readvertise-destination.cpp.
Definition at line 33 of file readvertise.cpp.
Referenced by nfd::rib::RibManager::onRibUpdateFailure().
Definition at line 44 of file rib-manager.cpp.
Referenced by nfd::rib::Service::initialize().
|
static |
Definition at line 41 of file service.cpp.