|
Face * | getFace (FaceId id) const |
|
const FaceTable & | getFaceTable () const |
|
MeasurementsAccessor & | getMeasurements () |
|
const fib::Entry & | lookupFib (const pit::Entry &pitEntry) const |
| performs a FIB lookup, considering Link object if present More...
|
|
void | processNack (const Face &inFace, const lp::Nack &nack, const shared_ptr< pit::Entry > &pitEntry) |
|
void | rejectPendingInterest (const shared_ptr< pit::Entry > &pitEntry) |
| decide that a pending Interest cannot be forwarded More...
|
|
void | sendInterest (const shared_ptr< pit::Entry > &pitEntry, Face &outFace, const Interest &interest) |
| send Interest to outFace More...
|
|
void | sendNack (const shared_ptr< pit::Entry > &pitEntry, const Face &outFace, const lp::NackHeader &header) |
| send Nack to outFace More...
|
|
void | sendNacks (const shared_ptr< pit::Entry > &pitEntry, const lp::NackHeader &header, std::initializer_list< const Face * > exceptFaces=std::initializer_list< const Face * >()) |
| send Nack to every face that has an in-record, except those in exceptFaces More...
|
|
void | setInstanceName (const Name &name) |
| set strategy instance name More...
|
|
Best Route strategy version 4.
This strategy forwards a new Interest to the lowest-cost nexthop (except downstream). After that, if consumer retransmits the Interest (and is not suppressed according to exponential backoff algorithm), the strategy forwards the Interest again to the lowest-cost nexthop (except downstream) that is not previously used. If all nexthops have been used, the strategy starts over with the first nexthop.
This strategy returns Nack to all downstreams with reason NoRoute if there is no usable nexthop, which may be caused by: (a) the FIB entry contains no nexthop; (b) the FIB nexthop happens to be the sole downstream; (c) the FIB nexthops violate scope.
This strategy returns Nack to all downstreams if all upstreams have returned Nacks. The reason of the sent Nack equals the least severe reason among received Nacks.
Definition at line 53 of file best-route-strategy2.hpp.
void nfd::fw::BestRouteStrategy2::afterReceiveNack |
( |
const Face & |
inFace, |
|
|
const lp::Nack & |
nack, |
|
|
const shared_ptr< pit::Entry > & |
pitEntry |
|
) |
| |
|
overridevirtual |
trigger after Nack is received
This trigger is invoked when an incoming Nack is received in response to an forwarded Interest. The Nack has been confirmed to be a response to the last Interest forwarded to that upstream, i.e. the PIT out-record exists and has a matching Nonce. The NackHeader has been recorded in the PIT out-record.
In this base class this method does nothing.
- Warning
- The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>.
Reimplemented from nfd::fw::Strategy.
Definition at line 188 of file best-route-strategy2.cpp.
void nfd::fw::Strategy::beforeExpirePendingInterest |
( |
const shared_ptr< pit::Entry > & |
pitEntry | ) |
|
|
virtualinherited |
trigger before PIT entry expires
PIT entry expires when InterestLifetime has elapsed for all InRecords, and it is not satisfied by an incoming Data.
This trigger is not invoked for PIT entry already satisfied.
In this base class this method does nothing.
- Warning
- The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>, although this isn't useful here because PIT entry would be deleted shortly after.
Definition at line 160 of file strategy.cpp.
void nfd::fw::Strategy::beforeSatisfyInterest |
( |
const shared_ptr< pit::Entry > & |
pitEntry, |
|
|
const Face & |
inFace, |
|
|
const Data & |
data |
|
) |
| |
|
virtualinherited |
trigger before PIT entry is satisfied
This trigger is invoked when an incoming Data satisfies the PIT entry. It can be invoked even if the PIT entry has already been satisfied.
In this base class this method does nothing.
- Warning
- The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>.
Reimplemented in nfd::fw::AccessStrategy, nfd::fw::asf::AsfStrategy, and nfd::fw::NccStrategy.
Definition at line 152 of file strategy.cpp.
Name nfd::fw::Strategy::makeInstanceName |
( |
const Name & |
input, |
|
|
const Name & |
strategyName |
|
) |
| |
|
staticprotectedinherited |
construct a strategy instance name
- Parameters
-
input | strategy instance name, may contain version and parameters |
strategyName | strategy name with version but without parameters; typically this should be getStrategyName() |
If input
contains a version component, return input
unchanged. Otherwise, return input
plus the version component taken from strategyName
. This allows a strategy instance to be constructed with an unversioned name, but its final instance name should contain the version.
Definition at line 132 of file strategy.cpp.