Skip to content

Commit 2939a83

Browse files
committed
Rename forwarder-helper
1 parent b4b453c commit 2939a83

File tree

8 files changed

+5
-91
lines changed

8 files changed

+5
-91
lines changed

CMakeInputs/encode.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ target_sources(ndn-lite PUBLIC
1313
${DIR_ENCODE}/signature.h
1414
${DIR_ENCODE}/signed-interest.h
1515
${DIR_ENCODE}/tlv.h
16-
${DIR_ENCODE}/new-interest.h
16+
${DIR_ENCODE}/forwarder-helper.h
1717
${DIR_ENCODE}/ndn-rule-storage.h
1818
${DIR_TRUST_SCHEMA}/ndn-trust-schema-common.h
1919
${DIR_TRUST_SCHEMA}/ndn-trust-schema-pattern-component.h
@@ -29,7 +29,7 @@ target_sources(ndn-lite PRIVATE
2929
${DIR_ENCODE}/name.c
3030
${DIR_ENCODE}/signature.c
3131
${DIR_ENCODE}/signed-interest.c
32-
${DIR_ENCODE}/new-interest.c
32+
${DIR_ENCODE}/forwarder-helper.c
3333
${DIR_ENCODE}/ndn-rule-storage.c
3434
${DIR_TRUST_SCHEMA}/ndn-trust-schema-pattern-component.c
3535
${DIR_TRUST_SCHEMA}/ndn-trust-schema-pattern.c

CMakeInputs/examples.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ set(LIST_EXAMPLES
99
# "access-control-producer"
1010
# "access-control-consumer"
1111
# "access-control-controller"
12-
"name-tree-test"
1312
)
1413
foreach(EXAM_NAME IN LISTS LIST_EXAMPLES)
1514
add_executable(${EXAM_NAME} "${DIR_EXAMPLES}/${EXAM_NAME}.c")

CMakeInputs/ndnlite.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ target_sources(ndn-lite PUBLIC
33
${DIR_NDN_LITE}/ndn-enums.h
44
${DIR_NDN_LITE}/ndn-error-code.h
55
${DIR_NDN_LITE}/ndn-services.h
6+
${PROJECT_SOURCE_DIR}/ndn-lite.h
67
)
78
include(${DIR_CMAKEFILES}/app-support.cmake)
89
include(${DIR_CMAKEFILES}/encode.cmake)

examples/name-tree-test.c

Lines changed: 0 additions & 82 deletions
This file was deleted.

examples/udp-basic-consumer.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include <ndn-lite.h>
1515
#include "ndn-lite/encode/name.h"
1616
#include "ndn-lite/encode/data.h"
17-
#undef NDN_ENCODING_INTEREST_H
1817
#include "ndn-lite/encode/interest.h"
1918

2019
in_port_t port1, port2;

examples/udp-basic-producer.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include <ndn-lite.h>
1515
#include "ndn-lite/encode/name.h"
1616
#include "ndn-lite/encode/data.h"
17-
#undef NDN_ENCODING_INTEREST_H
1817
#include "ndn-lite/encode/interest.h"
1918

2019
in_port_t port1, port2;

ndn-lite.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
#include "adaptation/adapt-consts.h"
1717
#include "adaptation/udp/udp-face.h"
1818
#include "ndn-lite/security/ndn-lite-sec-config.h"
19-
20-
// TODO
21-
#include "ndn-lite/encode/new-interest.h"
19+
//#include "ndn-lite/encode/forwarder-helper.h"
2220

2321
static void
2422
ndn_lite_startup(){

0 commit comments

Comments
 (0)