nfd::Forwarder Class Reference

main class of NFD More...

#include <daemon/fw/forwarder.hpp>

Public Member Functions

 Forwarder ()
 
 ~Forwarder ()
 
void addFace (shared_ptr< Face > face)
 add new Face More...
 
const ForwarderCountersgetCounters () const
 
Cs & getCs ()
 
DeadNonceListgetDeadNonceList ()
 
Face * getFace (FaceId id) const
 get existing Face More...
 
FaceTablegetFaceTable ()
 
Fib & getFib ()
 
Measurements & getMeasurements ()
 
NameTree & getNameTree ()
 
NetworkRegionTablegetNetworkRegionTable ()
 
Pit & getPit ()
 
StrategyChoice & getStrategyChoice ()
 
fw::UnsolicitedDataPolicygetUnsolicitedDataPolicy () const
 
void setUnsolicitedDataPolicy (unique_ptr< fw::UnsolicitedDataPolicy > policy)
 
void startProcessData (Face &face, const Data &data)
 start incoming Data processing More...
 
void startProcessInterest (Face &face, const Interest &interest)
 start incoming Interest processing More...
 
void startProcessNack (Face &face, const lp::Nack &nack)
 start incoming Nack processing More...
 

Friends

class fw::Strategy
 

Detailed Description

main class of NFD

Forwarder owns all faces and tables, and implements forwarding pipelines.

Definition at line 52 of file forwarder.hpp.

Constructor & Destructor Documentation

nfd::Forwarder::Forwarder ( )

Definition at line 46 of file forwarder.cpp.

nfd::Forwarder::~Forwarder ( )
default

Member Function Documentation

void nfd::Forwarder::addFace ( shared_ptr< Face >  face)
inline

add new Face

shortcut to .getFaceTable().add(face)

Definition at line 88 of file forwarder.hpp.

const ForwarderCounters& nfd::Forwarder::getCounters ( ) const
inline

Definition at line 61 of file forwarder.hpp.

Cs& nfd::Forwarder::getCs ( )
inline

Definition at line 156 of file forwarder.hpp.

DeadNonceList& nfd::Forwarder::getDeadNonceList ( )
inline

Definition at line 174 of file forwarder.hpp.

Face* nfd::Forwarder::getFace ( FaceId  id) const
inline

get existing Face

shortcut to .getFaceTable().get(face)

Definition at line 78 of file forwarder.hpp.

FaceTable& nfd::Forwarder::getFaceTable ( )
inline

Definition at line 68 of file forwarder.hpp.

Fib& nfd::Forwarder::getFib ( )
inline

Definition at line 144 of file forwarder.hpp.

Measurements& nfd::Forwarder::getMeasurements ( )
inline

Definition at line 162 of file forwarder.hpp.

NameTree& nfd::Forwarder::getNameTree ( )
inline

Definition at line 138 of file forwarder.hpp.

NetworkRegionTable& nfd::Forwarder::getNetworkRegionTable ( )
inline

Definition at line 180 of file forwarder.hpp.

Pit& nfd::Forwarder::getPit ( )
inline

Definition at line 150 of file forwarder.hpp.

StrategyChoice& nfd::Forwarder::getStrategyChoice ( )
inline

Definition at line 168 of file forwarder.hpp.

fw::UnsolicitedDataPolicy& nfd::Forwarder::getUnsolicitedDataPolicy ( ) const
inline

Definition at line 94 of file forwarder.hpp.

void nfd::Forwarder::setUnsolicitedDataPolicy ( unique_ptr< fw::UnsolicitedDataPolicy policy)
inline

Definition at line 100 of file forwarder.hpp.

void nfd::Forwarder::startProcessData ( Face &  face,
const Data &  data 
)
inline

start incoming Data processing

Parameters
faceface on which Data is received
datathe incoming Data, must be well-formed and created with make_shared

Definition at line 122 of file forwarder.hpp.

void nfd::Forwarder::startProcessInterest ( Face &  face,
const Interest &  interest 
)
inline

start incoming Interest processing

Parameters
faceface on which Interest is received
interestthe incoming Interest, must be well-formed and created with make_shared

Definition at line 112 of file forwarder.hpp.

void nfd::Forwarder::startProcessNack ( Face &  face,
const lp::Nack &  nack 
)
inline

start incoming Nack processing

Parameters
faceface on which Nack is received
nackthe incoming Nack, must be well-formed

Definition at line 132 of file forwarder.hpp.

Friends And Related Function Documentation

friend class fw::Strategy
friend

Definition at line 288 of file forwarder.hpp.