Add constants for 802.11r

Add constants FT-EAP and FT-PSK, which implement 802.11r Fast
BSS Transition.

Bug: 32607043
Change-Id: Ic089bf9331723f1fce3978253437f5759c6d61e9
Test: Build (constants only)
This commit is contained in:
Paul Stewart
2016-11-01 13:03:35 -07:00
committed by Roshan Pius
parent e42d88323a
commit 3ed7caa0f9

View File

@@ -98,10 +98,22 @@ public class WifiConfiguration implements Parcelable {
*/
public static final int OSEN = 5;
/**
* IEEE 802.11r Fast BSS Transition with PSK authentication.
* @hide
*/
public static final int FT_PSK = 6;
/**
* IEEE 802.11r Fast BSS Transition with EAP authentication.
* @hide
*/
public static final int FT_EAP = 7;
public static final String varName = "key_mgmt";
public static final String[] strings = { "NONE", "WPA_PSK", "WPA_EAP", "IEEE8021X",
"WPA2_PSK", "OSEN" };
"WPA2_PSK", "OSEN", "FT_PSK", "FT_EAP" };
}
/**