Major change: in expressInterest, remove the Closure class and use function objects for onData and onTimeout.
7 files changed
tree: 513f6d684d9d33bd9c9e8232e50441bb53336fac
  1. doc/
  2. libs/
  3. ndn-cpp/
  4. ndnboost/
  5. tests/
  6. .gitignore
  7. aminclude.am
  8. ar-lib
  9. autogen.sh
  10. boost.png
  11. CHANGELOG
  12. compile
  13. config.guess
  14. config.h.in
  15. config.sub
  16. configure
  17. configure.ac
  18. COPYING
  19. depcomp
  20. Doxyfile
  21. INSTALL
  22. install-sh
  23. libtool
  24. log4cxx.properties
  25. ltmain.sh
  26. Makefile.am
  27. Makefile.in
  28. missing
  29. README.md
README.md

NDN-CPP: A Named Data Networking client library for C++ and C

NDN-CPP is a new implementation of a Named Data Networking client library written in C++ and C.
It is wire format compatible with NDNx and PARC's CCNx.

NDN-CPP is open source under a license described in the file COPYING. While the license does not require it, we really would appreciate it if others would share their contributions to the library if they are willing to do so under the same license.

See the file INSTALL for build and install instructions.

Please submit any bugs or issues to the NDN-CPP issue tracker: http://redmine.named-data.net/projects/ndn-cpp/issues


The library currently requires a remote NDN daemon, and has been tested with ndnd, from the NDNx package: https://github.com/named-data/ndnx .

Currently, the library has two APIs for developers:

1. The C++ API which follows the NDN Common Client Library API also used by ndn-js (JavaScript)
 and PyNDN (Python).

2. A core C library implementing lower-level encoding and communication.  Applications should normally
 use the C++ API, but core C code will also function on embedded devices and other environments 
 which don't have C++ support.