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

Commit 2b8b126c authored by divya.n1's avatar divya.n1 Committed by Gabriel Biren
Browse files

Add enum for aggressive roaming mode to

the Vendor HAL AIDL interface.

Bug: 269196966
Test: m

Change-Id: Icc972fdea98035ad7668b85a7f4c3ae0c38f732d
parent 43f8c36f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -36,4 +36,5 @@ package android.hardware.wifi;
enum StaRoamingState {
  DISABLED = 0,
  ENABLED = 1,
  AGGRESSIVE = 2,
}
+5 −0
Original line number Diff line number Diff line
@@ -32,4 +32,9 @@ enum StaRoamingState {
     * the |StaRoamingConfig| parameters set using |configureRoaming|.
     */
    ENABLED = 1,
    /**
     * Driver/Firmware is allowed to roam more aggressively. For instance,
     * roaming can be triggered at higher RSSI thresholds than normal.
     */
    AGGRESSIVE = 2,
}