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

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

Merge "Add TID-to-Link mapping capability fields"

parents 626c697e 9785d8f1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ interface IWifiChip {
    P2P_RAND_MAC = (1 << 5) /* 32 */,
    WIGIG = (1 << 6) /* 64 */,
    SET_AFC_CHANNEL_ALLOWANCE = (1 << 7) /* 128 */,
    T2LM_NEGOTIATION = (1 << 8) /* 256 */,
  }
  @VintfStability
  parcelable ChipConcurrencyCombinationLimit {
+4 −0
Original line number Diff line number Diff line
@@ -78,6 +78,10 @@ interface IWifiChip {
         * for AFC purposes.
         */
        SET_AFC_CHANNEL_ALLOWANCE = 1 << 7,
        /**
         * Chip supports Tid-To-Link mapping negotiation.
         */
        T2LM_NEGOTIATION = 1 << 8,
    }

    /**
+1 −0
Original line number Diff line number Diff line
@@ -39,4 +39,5 @@ parcelable ConnectionCapabilities {
  int maxNumberTxSpatialStreams;
  int maxNumberRxSpatialStreams;
  android.hardware.wifi.supplicant.LegacyMode legacyMode;
  boolean apTidToLinkMapNegotiationSupported;
}
+4 −0
Original line number Diff line number Diff line
@@ -44,4 +44,8 @@ parcelable ConnectionCapabilities {
     * detailed network mode for legacy network
     */
    LegacyMode legacyMode;
    /**
     * Indicates the AP support for TID-to-link mapping negotiation.
     */
    boolean apTidToLinkMapNegotiationSupported;
}