Project

General

Profile

Wiki » History » Version 18

Alex Afanasyev, 01/30/2014 06:23 PM

1 4 Junxiao Shi
# NDN Forwarding Daemon (NFD)
2 2
3 4 Junxiao Shi
**NDN Forwarding Daemon (NFD)** is a new NDN forwarder under development.
4
Its first release is scheduled for March 2014.
5 2
6 9 Junxiao Shi
NFD conforms to these **network protocols and specifications**:
7 2
8 4 Junxiao Shi
* [CCNx protocol](http://www.ccnx.org/releases/ccnx-0.7.2/doc/technical/CCNxProtocol.html)
9
* [NDN-TLV packet format](http://named-data.net/doc/ndn-tlv/)
10 6 Junxiao Shi
* [[NDNLP-TLV]] for Ethernet communication
11 17 Junxiao Shi
* [[LocalControlHeader|NFD local control header]] <small>(to be defined)</small> for local applications
12 9 Junxiao Shi
* [[Signed Interests]] specification
13
* [[ControlCommand|NFD Control Command specification]]
14 18 Alex Afanasyev
* [[FaceMgmt|NFD Face Management protocol]] <small>(definition in progress)</small>
15 2
* [[FibMgmt|NFD FIB Management protocol]]
16 18 Alex Afanasyev
17
Miscellaneous
18
19
* [[NFD-related NDN-TLV Type assignments]]
20 4 Junxiao Shi
21
## Developer Resources
22
23 11 Beichuan Zhang
### UML diagrams
24
* [NFD-UML](http://irl.cs.ucla.edu/~cawka/nfd-uml/)
25
26 4 Junxiao Shi
### platform and libraries
27 5 Junxiao Shi
* [C++ 03](http://en.cppreference.com/w/), [[CodeStyle|code style guidelines]]
28 4 Junxiao Shi
* [Boost >=1.42.0](http://www.boost.org/doc/libs/1_42_0/), we use [[Boost|a limited set of Boost libraries]]
29
* [Boost Unit Test Framework](http://www.boost.org/doc/libs/1_42_0/libs/test/doc/html/index.html), more information on [[UnitTesting|unit testing]]
30 13 Beichuan Zhang
* [NDN-CPP-TLV](https://github.com/cawka/ndn-cpp/tree/new-dev), client library that supports TLV.
31
* [NDNx-TLV](https://github.com/bruinfish/ndn-tlv-package-instruction/wiki/NDNx-TLV-Package-Instruction), package that translates between TLV and ccnb, to help migrate apps from ccnb to TLV.
32 2
* [waf build system](https://code.google.com/p/waf/)
33
34 7 Alex Afanasyev
### development process
35
* [gerrit code review](http://gerrit.named-data.net/), more information:
36
  * [Git and Gerrit in Action](https://www.jboss.org/dms/judcon/presentations/Boston2011/JUDConBoston2011_day1track2session6.pdf)
37
  * [Using Gerrit Code Review in an Open Source Project](http://redmine.named-data.net/attachments/download/6/gerrit-slides-130203050220-phpapp01.pdf)
38 5 Junxiao Shi
39
### background knowledge
40
41
* [[ccndKnowledge|knowledge about ccnd]]
42
* [ndnSIM](http://ndnsim.net/)
43
* [NDNFD](https://github.com/NDN-Routing/NDNFD)