aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-07-26 21:51:39 +0000
committerEvan Huus <eapache@gmail.com>2013-07-26 21:51:39 +0000
commit6e3a30794ef9e3270f52bbb5ea2227ff35112f21 (patch)
tree1d7592f45b40281d89259ea429600352e9560461 /epan/proto.h
parent6580abbbc31c22060e819cfb8b1b8484028b62ec (diff)
Add 64-bit value strings and the appropriate tooling (including yet another
overloaded use of the DISPLAY field). Thanks to Jakub for pointing out I'd done this wrong the first time (months ago in r49357). Fixes severity display for collectd protocol, originally filed at: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8472 svn path=/trunk/; revision=50935
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 358130d7ed..75f5e668a6 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -335,10 +335,10 @@ typedef enum {
} base_display_e;
/* Following constants have to be ORed with a base_display_e when dissector
- * want to use specials MACROs (for the moment, only RVALS) for a
- * header_field_info */
+ * want to use specials value-string MACROs for a header_field_info */
#define BASE_RANGE_STRING 0x10
-#define BASE_EXT_STRING 0x20
+#define BASE_EXT_STRING 0x20
+#define BASE_VAL64_STRING 0x40
/** BASE_ values that cause the field value to be displayed twice */
#define IS_BASE_DUAL(b) ((b)==BASE_DEC_HEX||(b)==BASE_HEX_DEC)