diff options
author | Mauro Sardara <msardara@cisco.com> | 2023-01-30 21:14:39 +0000 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2023-02-13 09:26:06 +0000 |
commit | c46b82460987912eb465187892286922aeaedab4 (patch) | |
tree | 340369094db2fcc8023668f924d8e561547714bb /hicn-plugin/includes | |
parent | df902fa5ea07a0de312b1b6dd138e360611e5769 (diff) |
feat(hicn-plugin): handle case of no exact match for mapme IU
Ticket: HICN-844
Change-Id: I1f046e6327e4cf507b7fa7a5adae53e63ab491bf
Signed-off-by: Mauro Sardara <msardara@cisco.com>
(cherry picked from commit 7cfd91a6c6316fe15186c8cd3acc1c4526db7e25)
Diffstat (limited to 'hicn-plugin/includes')
-rw-r--r-- | hicn-plugin/includes/vpp_plugins/hicn/error.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hicn-plugin/includes/vpp_plugins/hicn/error.h b/hicn-plugin/includes/vpp_plugins/hicn/error.h index 717017564..ae5e102e7 100644 --- a/hicn-plugin/includes/vpp_plugins/hicn/error.h +++ b/hicn-plugin/includes/vpp_plugins/hicn/error.h @@ -38,8 +38,8 @@ _ (FACE_NO_GLOBAL_IP, NEXT (FACE_NOMEM), "No global ip address for face") \ _ (FACE_NOT_FOUND_IN_ENTRY, NEXT (FACE_NO_GLOBAL_IP), \ "Face not found in entry") \ - _ (FACE_ALREADY_DELETED, NEXT (FACE_NOT_FOUND_IN_ENTRY), \ - "Face alredy deleted") \ + _ (FACE_NOT_VALID, NEXT (FACE_NOT_FOUND_IN_ENTRY), "Face not valid") \ + _ (FACE_ALREADY_DELETED, NEXT (FACE_NOT_VALID), "Face alredy deleted") \ _ (FACE_ALREADY_CREATED, NEXT (FACE_ALREADY_DELETED), \ "Face alredy created") \ _ (FWD_NOT_ENABLED, NEXT (FACE_ALREADY_CREATED), \ @@ -116,7 +116,9 @@ "Src and dst addresses have different type (ipv4 and ipv6)") \ _ (MAPME_NEXT_HOP_ADDED, NEXT (UDP_TUNNEL_SRC_DST_TYPE), \ "Next hop added to mapme") \ - _ (MAPME_NEXT_HOP_NOT_ADDED, NEXT (MAPME_NEXT_HOP_ADDED), \ + _ (MAPME_WRONG_FACE_CREATED, NEXT (MAPME_NEXT_HOP_ADDED), \ + "Face created does not correspond to the IU input face") \ + _ (MAPME_NEXT_HOP_NOT_ADDED, NEXT (MAPME_WRONG_FACE_CREATED), \ "Next hop added to mapme") \ _ (PCS_NOT_FOUND, NEXT (MAPME_NEXT_HOP_NOT_ADDED), \ "Hash not found in hash table") \ |