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

Commit 4efd7144 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 9597030 from 4ff44567 to udc-release

Change-Id: I380562891727b05cfad1678b22939fc273716c9a
parents 667738e3 4ff44567
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -49,4 +49,11 @@ parcelable StaLinkLayerLinkStats {
  android.hardware.wifi.StaLinkLayerIfaceContentionTimeStats wmeViContentionTimeStats;
  android.hardware.wifi.StaLinkLayerIfaceContentionTimeStats wmeVoContentionTimeStats;
  android.hardware.wifi.StaPeerInfo[] peers;
  android.hardware.wifi.StaLinkLayerLinkStats.StaLinkState state;
  @Backing(type="int") @VintfStability
  enum StaLinkState {
    UNKNOWN = 0,
    NOT_IN_USE = (1 << 0) /* 1 */,
    IN_USE = (1 << 1) /* 2 */,
  }
}
+29 −0
Original line number Diff line number Diff line
@@ -95,4 +95,33 @@ parcelable StaLinkLayerLinkStats {
     * Per peer statistics for the link.
     */
    StaPeerInfo[] peers;
    /**
     * Various states of the link.
     */
    @Backing(type="int")
    @VintfStability
    enum StaLinkState {
        /**
         * Chip does not support reporting the state of the link.
         */
        UNKNOWN = 0,
        /**
         * Link has not been in use since last report. It is placed in power save. All management,
         * control and data frames for the MLO connection are carried over other links. In this
         * state the link will not listen to beacons even in DTIM period and does not perform any
         * GTK/IGTK/BIGTK updates but remains associated.
         */
        NOT_IN_USE = 1 << 0,
        /**
         * Link is in use. In presence of traffic, it is set to be power active. When the traffic
         * stops, the link will go into power save mode and will listen for beacons every DTIM
         * period.
         *
         */
        IN_USE = 1 << 1,
    }
    /**
     * State of the link. Refer |StaLinkState|.
     */
    StaLinkState state;
}