Main class of NFD forwarding engine. More...
#include <daemon/fw/forwarder.hpp>
Public Member Functions | |
| Forwarder () | |
| ~Forwarder () | |
| void | addFace (shared_ptr< Face > face) |
| add new Face More... | |
| const ForwarderCounters & | getCounters () const |
| Cs & | getCs () |
| DeadNonceList & | getDeadNonceList () |
| Face * | getFace (FaceId id) const |
| get existing Face More... | |
| FaceTable & | getFaceTable () |
| Fib & | getFib () |
| Measurements & | getMeasurements () |
| NameTree & | getNameTree () |
| NetworkRegionTable & | getNetworkRegionTable () |
| Pit & | getPit () |
| StrategyChoice & | getStrategyChoice () |
| fw::UnsolicitedDataPolicy & | getUnsolicitedDataPolicy () const |
| void | setUnsolicitedDataPolicy (unique_ptr< fw::UnsolicitedDataPolicy > policy) |
| void | startProcessData (const FaceEndpoint &ingress, const Data &data) |
| start incoming Data processing More... | |
| void | startProcessInterest (const FaceEndpoint &ingress, const Interest &interest) |
| start incoming Interest processing More... | |
| void | startProcessNack (const FaceEndpoint &ingress, const lp::Nack &nack) |
| start incoming Nack processing More... | |
Friends | |
| class | fw::Strategy |
Main class of NFD forwarding engine.
Forwarder owns all faces and tables, and implements the forwarding pipelines.
Definition at line 51 of file forwarder.hpp.
| nfd::Forwarder::Forwarder | ( | ) |
Definition at line 47 of file forwarder.cpp.
|
default |
|
inline |
|
inline |
Definition at line 60 of file forwarder.hpp.
|
inline |
Definition at line 155 of file forwarder.hpp.
|
inline |
Definition at line 173 of file forwarder.hpp.
|
inline |
get existing Face
shortcut to .getFaceTable().get(face)
Definition at line 77 of file forwarder.hpp.
|
inline |
Definition at line 67 of file forwarder.hpp.
|
inline |
Definition at line 143 of file forwarder.hpp.
|
inline |
Definition at line 161 of file forwarder.hpp.
|
inline |
Definition at line 137 of file forwarder.hpp.
|
inline |
Definition at line 179 of file forwarder.hpp.
|
inline |
Definition at line 149 of file forwarder.hpp.
|
inline |
Definition at line 167 of file forwarder.hpp.
|
inline |
Definition at line 93 of file forwarder.hpp.
|
inline |
Definition at line 99 of file forwarder.hpp.
|
inline |
start incoming Data processing
| ingress | face on which Data is received and endpoint of the sender |
| data | the incoming Data, must be well-formed and created with make_shared |
Definition at line 121 of file forwarder.hpp.
|
inline |
start incoming Interest processing
| ingress | face on which Interest is received and endpoint of the sender |
| interest | the incoming Interest, must be well-formed and created with make_shared |
Definition at line 111 of file forwarder.hpp.
|
inline |
start incoming Nack processing
| ingress | face on which Nack is received and endpoint of the sender |
| nack | the incoming Nack, must be well-formed |
Definition at line 131 of file forwarder.hpp.
|
friend |
Definition at line 290 of file forwarder.hpp.