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

Commit 10794f0b authored by Mitchell Wills's avatar Mitchell Wills Committed by Android (Google) Code Review
Browse files

Merge "Moved Wifi InformationElement parsing to a common utility class"

parents 894e2211 97c46ef2
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -309,6 +309,15 @@ public class ScanResult implements Parcelable {
     * @hide
     */
    public static class InformationElement {
        public static final int EID_SSID = 0;
        public static final int EID_BSS_LOAD = 11;
        public static final int EID_HT_OPERATION = 61;
        public static final int EID_INTERWORKING = 107;
        public static final int EID_ROAMING_CONSORTIUM = 111;
        public static final int EID_EXTENDED_CAPS = 127;
        public static final int EID_VHT_OPERATION = 192;
        public static final int EID_VSA = 221;

        public int id;
        public byte[] bytes;