Add constants for 802.11r

am: e72f7dc385

Change-Id: I06d93c3ce96cddd6447b340304ce9fec2d4e41f2
This commit is contained in:
Paul Stewart
2016-12-03 04:16:58 +00:00
committed by android-build-merger

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" };
}
/**