diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2008-08-15 11:25:24 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2008-08-15 11:25:24 +0300 |
commit | c1e033b0bbde58d44dc9164a5568b9b285e57525 (patch) | |
tree | 94bc296a81401223b6fd7783858b9377b6c744f8 /hostapd | |
parent | d48ae45b7333c3313b359f80faba2d38b9e0c7ff (diff) | |
download | external_wpa_supplicant_8_ti-c1e033b0bbde58d44dc9164a5568b9b285e57525.zip external_wpa_supplicant_8_ti-c1e033b0bbde58d44dc9164a5568b9b285e57525.tar.gz external_wpa_supplicant_8_ti-c1e033b0bbde58d44dc9164a5568b9b285e57525.tar.bz2 |
IEEE Std 802.11r-2008 has been released, so update references
Diffstat (limited to 'hostapd')
-rw-r--r-- | hostapd/defconfig | 5 | ||||
-rw-r--r-- | hostapd/wpa.h | 3 | ||||
-rw-r--r-- | hostapd/wpa_ft.c | 2 |
3 files changed, 4 insertions, 6 deletions
diff --git a/hostapd/defconfig b/hostapd/defconfig index 4cfaee9..82173a7 100644 --- a/hostapd/defconfig +++ b/hostapd/defconfig @@ -115,10 +115,7 @@ CONFIG_PKCS12=y # Build IPv6 support for RADIUS operations CONFIG_IPV6=y -# IEEE 802.11r/D4.1 (Fast BSS Transition) -# This enables an experimental implementation of a draft version of -# IEEE 802.11r. This draft is still subject to change, so it should be noted -# that this version may not comply with the final standard. +# IEEE Std 802.11r-2008 (Fast BSS Transition) #CONFIG_IEEE80211R=y # Use the hostapd's IEEE 802.11 authentication (ACL), but without diff --git a/hostapd/wpa.h b/hostapd/wpa.h index 5bcb6a6..74bea27 100644 --- a/hostapd/wpa.h +++ b/hostapd/wpa.h @@ -22,7 +22,8 @@ #pragma pack(push, 1) #endif /* _MSC_VER */ -/* IEEE 802.11r/D8.0, 11A.10.3 - Remote request/response frame definition */ +/* IEEE Std 802.11r-2008, 11A.10.3 - Remote request/response frame definition + */ struct ft_rrb_frame { u8 frame_type; /* RSN_REMOTE_FRAME_TYPE_FT_RRB */ u8 packet_type; /* FT_PACKET_REQUEST/FT_PACKET_RESPONSE */ diff --git a/hostapd/wpa_ft.c b/hostapd/wpa_ft.c index 44249e2..7da9508 100644 --- a/hostapd/wpa_ft.c +++ b/hostapd/wpa_ft.c @@ -1274,7 +1274,7 @@ int wpa_ft_rrb_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr, MAC2STR(frame->ap_address)); if (frame->frame_type != RSN_REMOTE_FRAME_TYPE_FT_RRB) { - /* Discard frame per IEEE 802.11r/D8.0, 10A.10.3 */ + /* Discard frame per IEEE Std 802.11r-2008, 11A.10.3 */ wpa_printf(MSG_DEBUG, "FT: RRB discarded frame with " "unrecognized type %d", frame->frame_type); return -1; |