From c1b56d5861829a23289f42cecd716e681b520cf0 Mon Sep 17 00:00:00 2001 From: Alberto Compagno Date: Wed, 22 Apr 2020 18:29:52 +0200 Subject: [HICN-602] Added bidirectional udp tunnels - Implemented a udp decapsulation node - Added a hash table to identify the incoming udp tunnel when an interest or data packets are received - Added udp punting through udp_register_dst_port Signed-off-by: Alberto Compagno Change-Id: Iffea4d81c5ea8ce8ccbbfd749113f06a698a2afe --- hicn-plugin/src/error.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hicn-plugin/src/error.h') diff --git a/hicn-plugin/src/error.h b/hicn-plugin/src/error.h index 923b25944..d35347779 100644 --- a/hicn-plugin/src/error.h +++ b/hicn-plugin/src/error.h @@ -69,7 +69,9 @@ _(APPFACE_PROD_PREFIX_NULL, -176, "Prefix must not be null for producer face") \ _(STRATEGY_NH_NOT_FOUND, -177, "Next hop not found") \ _(MW_STRATEGY_SET, -178, "Error while setting weight for next hop") \ - _(STRATEGY_NOT_FOUND, -179, "Strategy not found") + _(STRATEGY_NOT_FOUND, -179, "Strategy not found") \ + _(UDP_TUNNEL_NOT_FOUND, -180, "Udp tunnel not found") \ + _(UDP_TUNNEL_SRC_DST_TYPE, -181, "Src and dst addresses have different type (ipv4 and ipv6)") typedef enum { -- cgit 1.2.3-korg