make: In ndn-cpp-config.h, to avoid polluting the global name space, generate NDN_CPP_HAVE_BOOST_FUNCTION etc. instead of HAVE_BOOST_FUNCTION, etc.
16 files changed
tree: 1f805c8800868cc602cb3ca5635eef3d29d0d695
  1. ndn-cpp/
  2. ndnboost/
  3. tests/
  4. .gitignore
  5. aminclude.am
  6. ar-lib
  7. autogen.sh
  8. CHANGELOG
  9. compile
  10. config.guess
  11. config.h.in
  12. config.sub
  13. configure
  14. configure.ac
  15. COPYING
  16. depcomp
  17. Doxyfile
  18. INSTALL
  19. install-sh
  20. libtool
  21. log4cxx.properties
  22. ltmain.sh
  23. Makefile.am
  24. Makefile.in
  25. missing
  26. 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.