aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorLorand Jakab <ljakab@ac.upc.edu>2018-11-14 17:27:37 +0100
committerAnders Broman <a.broman58@gmail.com>2018-11-14 19:23:48 +0000
commit6f3e7a6d80f55809560d7431a12bc2f3b0a480d7 (patch)
tree3c9e8b37dd036e68d03e36e809cea032e4299722 /epan
parent66b9495b9e9445f59c2fe9af69b405e62e8d910a (diff)
LISP: Fix action bits decoding
Change-Id: I76f5e10fbc5ca0071d1444e31ce4c8fba639c3bc Signed-off-by: Lorand Jakab <ljakab@ac.upc.edu> Reviewed-on: https://code.wireshark.org/review/30630 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-lisp.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/epan/dissectors/packet-lisp.c b/epan/dissectors/packet-lisp.c
index 0566807d43..ba2f2dfe08 100644
--- a/epan/dissectors/packet-lisp.c
+++ b/epan/dissectors/packet-lisp.c
@@ -46,6 +46,9 @@ void proto_reg_handoff_lisp(void);
#define LISP_ACT_FWD_NATIVE 1
#define LISP_ACT_MREQ 2
#define LISP_ACT_DROP 3
+#define LISP_ACT_DROP_PD 4
+#define LISP_ACT_DROP_AF 5
+#define LISP_ACT_FWD_UA 6
#define DDT_NODE_REF 0
#define DDT_MS_REF 1
@@ -420,7 +423,10 @@ const value_string mapping_actions[] = {
{ LISP_ACT_NONE, "No-Action" },
{ LISP_ACT_FWD_NATIVE, "Natively-Forward" },
{ LISP_ACT_MREQ, "Send-Map-Request" },
- { LISP_ACT_DROP, "Drop" },
+ { LISP_ACT_DROP, "Drop/No-Reason" },
+ { LISP_ACT_DROP_PD, "Drop/Policy-Denied" },
+ { LISP_ACT_DROP_AF, "Drop/Authentication-Failure" },
+ { LISP_ACT_FWD_UA, "Forward-For-Unknown-Address" },
{ 0, NULL}
};