aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-01-09 12:51:15 -0500
committerMichael Mann <mmann78@netscape.net>2015-01-10 19:57:59 +0000
commit59c1e32d2c6dbdd353ae996d9538141bb029d6d0 (patch)
tree91e0422d3b1eed7ec887522fc6845ef94955d291 /epan/proto.h
parenteffc8266ce2a87c5987018511f9bb2f61c34ba57 (diff)
Add BASE_SPACE for FT_BYTES
It's just like BASE_DOT, BASE_DASH and BASE_SEMICOLON, only its a space between bytes. Since this seems pretty specific to FT_BYTES, perhaps there is a better was to represent the functionality (like FT_BOOLEAN uses numeric values for number of bits)? Change-Id: I1a8f1ab263ece2736a8012b66fdd6a9105db7282 Reviewed-on: https://code.wireshark.org/review/6451 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 5a5b1aed2b..eec5e099ec 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -499,7 +499,8 @@ typedef enum {
/* Byte types */
BASE_DOT = 8, /**< hexadecimal bytes with a period (.) between each byte */
BASE_DASH = 9, /**< hexadecimal bytes with a dash (-) between each byte */
- BASE_SEMICOLON = 10 /**< hexadecimal bytes with a dash (:) between each byte */
+ BASE_SEMICOLON = 10, /**< hexadecimal bytes with a dash (:) between each byte */
+ BASE_SPACE = 11 /**< hexadecimal bytes with a space between each byte */
} field_display_e;
/* Following constants have to be ORed with a field_display_e when dissector