aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorMasashi Honma <masashi.honma@gmail.com>2017-09-17 08:23:25 +0900
committerMichael Mann <mmann78@netscape.net>2017-09-17 00:04:07 +0000
commita5c79b8ec8ff147c94e17eeb131947a57f461ec7 (patch)
tree9932e77c1689b0f5244506988200fab9c798fdbb /epan/dissectors/packet-ieee80211.c
parent4b8504f39a07e19f40b9df1548f8400ef6ae61a8 (diff)
ieee802.11: Add FILS authentication algorithm number
The IEEE Std 802.11ai-2016 defines new algorithm number for FILS(IEEE 802.11ai) at "9.4.1.1 Authentication Algorithm Number field" section. Change-Id: I4351682d38efab2727e3a36741fe2f49508bba14 Signed-off-by: Masashi Honma <masashi.honma@gmail.com> Reviewed-on: https://code.wireshark.org/review/23576 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 50da86a421..53e19d055d 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -1667,6 +1667,9 @@ static const value_string auth_alg[] = {
{0x01, "Shared key"},
{0x02, "Fast BSS Transition"},
{0x03, "Simultaneous Authentication of Equals (SAE)"},
+ {0x04, "FILS Shared Key authentication without PFS"},
+ {0x05, "FILS Shared Key authentication with PFS"},
+ {0x06, "FILS Public Key authentication"},
{0x80, "Network EAP"}, /* Cisco proprietary? */
{0, NULL}
};