Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cbd9c544 authored by Paul Stewart's avatar Paul Stewart Committed by android-build-merger
Browse files

Add constants for 802.11r am: e72f7dc3

am: 1fd6f643

Change-Id: I320327bfd79bccb206d0c462705364216b9465e0
parents a4d7d45d 1fd6f643
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -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" };
    }

    /**