diff options
author | Anders Broman <anders.broman@ericsson.com> | 2010-04-01 20:49:07 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2010-04-01 20:49:07 +0000 |
commit | dc5e066caedd01323d815c60a8c988263bdd9619 (patch) | |
tree | c4acf7d02ad8593233c6476178d1a32a77c72cfc /wimaxasncp | |
parent | 49d87190561c3be6be82c5498388bab61ddfeeef (diff) | |
download | wireshark-dc5e066caedd01323d815c60a8c988263bdd9619.tar.gz wireshark-dc5e066caedd01323d815c60a8c988263bdd9619.tar.bz2 wireshark-dc5e066caedd01323d815c60a8c988263bdd9619.zip |
From sangaran:
8-bit Bit Flag decoder method needed in wimaxasncp plugin dissecto.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4608
svn path=/trunk/; revision=32356
Diffstat (limited to 'wimaxasncp')
-rw-r--r-- | wimaxasncp/dictionary.xml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/wimaxasncp/dictionary.xml b/wimaxasncp/dictionary.xml index 65a000233e..2c5dbdb96d 100644 --- a/wimaxasncp/dictionary.xml +++ b/wimaxasncp/dictionary.xml @@ -201,28 +201,31 @@ <tlv name="Authorization Policy" type="21" - decoder="WIMAXASNCP_TLV_ENUM8"> + decoder="WIMAXASNCP_TLV_BITFLAGS8"> <enum name="RSA authorization" - code="0x01"/> + code="WIMAXASNCP_BIT8(7)"/> <enum name="EAP authorization" - code="0x02"/> + code="WIMAXASNCP_BIT8(6)"/> <enum name="Authenticated-EAP authorization" - code="0x04"/> + code="WIMAXASNCP_BIT8(5)"/> <enum name="HMAC supported" - code="0x08"/> + code="WIMAXASNCP_BIT8(4)"/> <enum name="RSA Authentication at Re-entry" - code="0x10"/> + code="WIMAXASNCP_BIT8(3)"/> <enum name="EAP Authentication at Re-entry" - code="0x20"/> + code="WIMAXASNCP_BIT8(2)"/> <enum name="Authenticated EAP-based authorization at reentry" - code="0x30"/> + code="WIMAXASNCP_BIT8(1)"/> + + <enum name="Reserved" + code="WIMAXASNCP_BIT8(0)"/> </tlv> <!-- ****************************************************************** --> |