diff options
author | Mauro Sardara <msardara@cisco.com> | 2020-04-17 13:41:08 +0200 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2020-04-17 15:06:05 +0200 |
commit | 43acd37f52812a152e4ebda9e30598fa226c1d09 (patch) | |
tree | bd4dd2a500d4b679224983641515c3ba87c3767b /lib/src/protocol/ipv6.c | |
parent | 512aa3a8c6f6a370e1b3968af26077e0cd5210e9 (diff) |
[HICN-597] Add API to mark packet as interest/data.
Change-Id: I1106211d3cac63d0817d4908bd03d6a0ccd2b8e0
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'lib/src/protocol/ipv6.c')
-rw-r--r-- | lib/src/protocol/ipv6.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/src/protocol/ipv6.c b/lib/src/protocol/ipv6.c index 622355294..f23b01cd8 100644 --- a/lib/src/protocol/ipv6.c +++ b/lib/src/protocol/ipv6.c @@ -99,6 +99,18 @@ ipv6_set_interest_name_suffix (hicn_type_t type, hicn_protocol_t * h, } int +ipv6_mark_packet_as_interest (hicn_type_t type, hicn_protocol_t * h) +{ + return CHILD_OPS (mark_packet_as_interest, type, h); +} + +int +ipv6_mark_packet_as_data (hicn_type_t type, hicn_protocol_t * h) +{ + return CHILD_OPS (mark_packet_as_data, type, h); +} + +int ipv6_reset_interest_for_hash (hicn_type_t type, hicn_protocol_t * h) { /* Sets everything to 0 up to IP destination address */ |