commit | 1fc58f8262d3f381dba327fe2ca9eef01ce22e70 | [log] [tgz] |
---|---|---|
author | Les Lee <lesl@google.com> | Tue Oct 22 21:36:15 2024 +0000 |
committer | Les Lee <lesl@google.com> | Wed Oct 30 22:45:00 2024 +0000 |
tree | 864531ef054d455c7eae83d9eeea63f80b49ebe7 | |
parent | e37f8956125a6df354aa2b0fa26be975ba1d8c67 [diff] |
wifi: Support client isolation configuration Note: It will be used to configure ap_isolate in hostapd.conf Bug: 362355566 Test: TH Change-Id: Ie362f419bed6ade7364b6123bcb2d7ce38a8b0ca
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; }