blob: e9f33e09f6c725b338bd6eac556c712769a706d7 [file] [log] [blame]
Jeff Thompson9b282e02013-08-09 17:13:38 -07001NDN-CPP: A Named Data Networking client library for C++ and C
Jeff Thompson057d3182013-08-09 17:02:25 -07002-------------------------------------------------------------
3
4Prerequisites
5-------------
6
7libcrypto
8
9Build
10-----
11
12To build in a terminal, change directory to the ndn-cpp root. Enter:
13
14./configure
15make
16
17(There is currently no "install" step.)
18
19Files
20-----
21
22This makes the following libraries:
23
24.libs/libndn-c.a: The core C code for encoding and communication.
25.libs/libndn-cpp.a: The C++ library API. libndn-cpp also needs libndn-c.
26
27This makes the following test files:
28
29bin/test-get-async: Connect to one of the NDN testbed hubs, express an interest and display the received data.
30bin/test-encode-decode-interest: Encode and decode an interest, testing interest selectors and the name URI.
31bin/test-encode-decode-data: Encode and decode a data packet, including signing the data packet.
32
33Supported platforms
34-------------------
35
Jeff Thompson9b282e02013-08-09 17:13:38 -070036NDN-CPP is tested on the following platforms:
Jeff Thompson057d3182013-08-09 17:02:25 -070037Ubuntu 12.04 (gcc 4.6.3)
38Mac OS X 10.8.4 (clang 4.2)
39Mac OS X 10.8.4 (gcc 4.2)
40
41