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

Commit 4d37f696 authored by Serik Beketayev's avatar Serik Beketayev
Browse files

[IHostapd] Support vendor-specific AP config elem

Bug: 139204496
Test: mma -j
Change-Id: I7caa7d3b27bca7898d8857bfb841b5466643644e
parent 962deadf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -39,4 +39,5 @@ parcelable NetworkParams {
  android.hardware.wifi.hostapd.EncryptionType encryptionType;
  String passphrase;
  boolean isMetered;
  byte[] vendorElements;
}
+8 −0
Original line number Diff line number Diff line
@@ -44,4 +44,12 @@ parcelable NetworkParams {
     * CHARGEABLE_PUBLIC_NETWORK when set to true.
     */
    boolean isMetered;
    /**
     * Additional vendor specific elements for Beacon and Probe Response frames
     * This parameter can be used to add additional vendor specific element(s) into
     * the end of the Beacon and Probe Response frames. The format for these
     * element(s) is a binary dump of the raw information elements (id+len+payload for
     * one or more elements). Example: byte[]{ 221, 4, 17, 34, 51, 1 }
     */
    byte[] vendorElements;
}