aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2020-04-26 16:33:20 -0700
committerGuy Harris <gharris@sonic.net>2020-04-27 01:53:09 +0000
commit524baee94fd8fab0ce4ba212ef35f39e81a386c0 (patch)
treeb024d4b5d739ad69a84c6fd6f9ac8d951263ad08 /doc
parent94556ca7a2502f820e2884550b153d06997b9384 (diff)
Add string encoding values for various BCD encodings, and use them.
Add some ENC_ values for various flavors of packed BCD, and use that instead of explicitly calling tvb_bcd_dig_to_wmem_packet_str() and adding the result. Change-Id: I07511d9d09c9231b610c121cd6ffb3b16fb017a9 Reviewed-on: https://code.wireshark.org/review/36952 Reviewed-by: Guy Harris <gharris@sonic.net>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.dissector3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/README.dissector b/doc/README.dissector
index ba7bbd64d0..818e502785 100644
--- a/doc/README.dissector
+++ b/doc/README.dissector
@@ -1748,6 +1748,9 @@ currently supported are:
ENC_CP866 - DOS code page 866
ENC_ASCII_7BITS - 7 bits ASCII
ENC_T61 - ITU T.61
+ ENC_BCD_DIGITS_0_9 - packed BCD (one digit per nibble), digits 0-9
+ ENC_KEYPAD_ABC_TBCD - keypad-with-a/b/c "telephony packed BCD" = 0-9, *, #, a, b, c
+ ENC_KEYPAD_BC_TBCD - keypad-with-B/C "telephony packed BCD" = 0-9, B, C, *, #
Other encodings will be added in the future.