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

Commit 103e3baf authored by Mahesh KKV's avatar Mahesh KKV Committed by Android (Google) Code Review
Browse files

Merge "Add more MLO link parameters"

parents af373fa8 bc4ca2af
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -38,4 +38,6 @@ parcelable MloLink {
  byte[] staLinkMacAddress;
  byte tidsUplinkMap;
  byte tidsDownlinkMap;
  @nullable byte[] apLinkMacAddress;
  int frequencyMHz;
}
+2 −0
Original line number Diff line number Diff line
@@ -35,4 +35,6 @@ package android.hardware.wifi.supplicant;
@VintfStability
parcelable MloLinksInfo {
  android.hardware.wifi.supplicant.MloLink[] links;
  int apMloLinkId;
  @nullable byte[] apMldMacAddress;
}
+8 −0
Original line number Diff line number Diff line
@@ -58,4 +58,12 @@ parcelable MloLink {
     */
    byte tidsUplinkMap;
    byte tidsDownlinkMap;
    /**
     * AP Link MAC Address
     */
    @nullable byte[/* 6 */] apLinkMacAddress;
    /**
     * Frequency on which the link operates in MHz.
     */
    int frequencyMHz;
}
+8 −0
Original line number Diff line number Diff line
@@ -28,4 +28,12 @@ parcelable MloLinksInfo {
     * List of MLO links
     */
    MloLink[] links;
    /**
     * The MLO link-id for the access point. It is the link-id used for association.
     */
    int apMloLinkId;
    /**
     * AP MLD MAC address.
     */
    @nullable byte[/* 6 */] apMldMacAddress;
}