aboutsummaryrefslogtreecommitdiffstats
path: root/wimaxasncp
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-04-01 20:49:07 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-04-01 20:49:07 +0000
commitdc5e066caedd01323d815c60a8c988263bdd9619 (patch)
treec4acf7d02ad8593233c6476178d1a32a77c72cfc /wimaxasncp
parent49d87190561c3be6be82c5498388bab61ddfeeef (diff)
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.xml19
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>
<!-- ****************************************************************** -->