commit | 760b77b636e33afa0e4e5914e75a9689046a701f | [log] [tgz] |
---|---|---|
author | Yi Shiou (Les) Lee <lesl@google.com> | Tue Nov 12 06:13:51 2024 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Nov 12 06:13:51 2024 +0000 |
tree | d540c8a5fccc7218d17524cf074eb4282b81a154 | |
parent | 731178ea46017145f7096f8cfc55b87e7b35abff [diff] | |
parent | 1fc58f8262d3f381dba327fe2ca9eef01ce22e70 [diff] |
Merge "wifi: Support client isolation configuration" into main
diff --git a/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/NetworkParams.aidl b/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/NetworkParams.aidl index 4554223..b6c5cf2 100644 --- a/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/NetworkParams.aidl +++ b/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/NetworkParams.aidl
@@ -40,4 +40,5 @@ String passphrase; boolean isMetered; byte[] vendorElements; + boolean isClientIsolationEnabled; }
diff --git a/wifi/hostapd/aidl/android/hardware/wifi/hostapd/NetworkParams.aidl b/wifi/hostapd/aidl/android/hardware/wifi/hostapd/NetworkParams.aidl index 47d9e6f..acc2cad 100644 --- a/wifi/hostapd/aidl/android/hardware/wifi/hostapd/NetworkParams.aidl +++ b/wifi/hostapd/aidl/android/hardware/wifi/hostapd/NetworkParams.aidl
@@ -52,4 +52,8 @@ * one or more elements). Example: byte[]{ 221, 4, 17, 34, 51, 1 } */ byte[] vendorElements; + /** + * Whether the network uses client isolation. + */ + boolean isClientIsolationEnabled; }