diff options
author | Chalard Jean <jchalard@google.com> | 2020-05-28 05:29:14 +0000 |
---|---|---|
committer | Chalard Jean <jchalard@google.com> | 2020-05-29 02:29:55 +0000 |
commit | c6ad18a80d6697ee9c72489e541ce86f42f7efd0 (patch) | |
tree | affc40054e7f5aea9ec2686f0ad97304aed10978 /src/android/net/ip/IpClient.java | |
parent | 59b66b8f2c3ab4ad3d9ecf372e12a498f0a45f5a (diff) |
Rename groupHint to cluster.
Bug: 146460486
Test: atest android.net.IpMemoryStoreTest
Test: atest com.android.server.connectivity.ipmemorystore.IpMemoryStoreServiceTest
Change-Id: I493472cb65262b04769192b702178351416c9869
Merged-In: I805733e201aa1286477cfac589cdf4ac18bb7e2b
(cherry-picked from aosp/1311636)
Diffstat (limited to 'src/android/net/ip/IpClient.java')
-rw-r--r-- | src/android/net/ip/IpClient.java | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/android/net/ip/IpClient.java b/src/android/net/ip/IpClient.java index f3dcdc8..4860ff3 100644 --- a/src/android/net/ip/IpClient.java +++ b/src/android/net/ip/IpClient.java @@ -381,7 +381,7 @@ public class IpClient extends StateMachine { private static final int EVENT_READ_PACKET_FILTER_COMPLETE = 12; private static final int CMD_ADD_KEEPALIVE_PACKET_FILTER_TO_APF = 13; private static final int CMD_REMOVE_KEEPALIVE_PACKET_FILTER_FROM_APF = 14; - private static final int CMD_UPDATE_L2KEY_GROUPHINT = 15; + private static final int CMD_UPDATE_L2KEY_CLUSTER = 15; private static final int CMD_COMPLETE_PRECONNECTION = 16; private static final int CMD_UPDATE_L2INFORMATION = 17; @@ -477,7 +477,7 @@ public class IpClient extends StateMachine { private ProxyInfo mHttpProxy; private ApfFilter mApfFilter; private String mL2Key; // The L2 key for this network, for writing into the memory store - private String mGroupHint; // The group hint for this network, for writing into the memory store + private String mCluster; // The cluster for this network, for writing into the memory store private boolean mMulticastFiltering; private long mStartTimeMillis; private MacAddress mCurrentBssid; @@ -686,9 +686,9 @@ public class IpClient extends StateMachine { IpClient.this.stop(); } @Override - public void setL2KeyAndGroupHint(String l2Key, String groupHint) { + public void setL2KeyAndGroupHint(String l2Key, String cluster) { enforceNetworkStackCallingPermission(); - IpClient.this.setL2KeyAndGroupHint(l2Key, groupHint); + IpClient.this.setL2KeyAndCluster(l2Key, cluster); } @Override public void setTcpBufferSizes(String tcpBufferSizes) { @@ -805,7 +805,7 @@ public class IpClient extends StateMachine { if (req.mLayer2Info != null) { mL2Key = req.mLayer2Info.mL2Key; - mGroupHint = req.mLayer2Info.mGroupHint; + mCluster = req.mLayer2Info.mCluster; } sendMessage(CMD_START, new android.net.shared.ProvisioningConfiguration(req)); } @@ -853,14 +853,14 @@ public class IpClient extends StateMachine { } /** - * Set the L2 key and group hint for storing info into the memory store. + * Set the L2 key and cluster for storing info into the memory store. * * This method is only supported on Q devices. For R or above releases, * caller should call #updateLayer2Information() instead. */ - public void setL2KeyAndGroupHint(String l2Key, String groupHint) { + public void setL2KeyAndCluster(String l2Key, String cluster) { if (!ShimUtils.isReleaseOrDevelopmentApiAbove(Build.VERSION_CODES.Q)) { - sendMessage(CMD_UPDATE_L2KEY_GROUPHINT, new Pair<>(l2Key, groupHint)); + sendMessage(CMD_UPDATE_L2KEY_CLUSTER, new Pair<>(l2Key, cluster)); } } @@ -917,7 +917,7 @@ public class IpClient extends StateMachine { } /** - * Update the network bssid, L2Key and GroupHint on L2 roaming happened. + * Update the network bssid, L2Key and cluster on L2 roaming happened. */ public void updateLayer2Information(@NonNull Layer2InformationParcelable info) { sendMessage(CMD_UPDATE_L2INFORMATION, info); @@ -1545,7 +1545,7 @@ public class IpClient extends StateMachine { private void handleUpdateL2Information(@NonNull Layer2InformationParcelable info) { mL2Key = info.l2Key; - mGroupHint = info.groupHint; + mCluster = info.cluster; if (info.bssid == null || mCurrentBssid == null) { Log.wtf(mTag, "bssid in the parcelable or current tracked bssid should be non-null"); @@ -1619,10 +1619,10 @@ public class IpClient extends StateMachine { handleLinkPropertiesUpdate(NO_CALLBACKS); break; - case CMD_UPDATE_L2KEY_GROUPHINT: { + case CMD_UPDATE_L2KEY_CLUSTER: { final Pair<String, String> args = (Pair<String, String>) msg.obj; mL2Key = args.first; - mGroupHint = args.second; + mCluster = args.second; break; } @@ -1824,10 +1824,10 @@ public class IpClient extends StateMachine { transitionTo(mStoppingState); break; - case CMD_UPDATE_L2KEY_GROUPHINT: { + case CMD_UPDATE_L2KEY_CLUSTER: { final Pair<String, String> args = (Pair<String, String>) msg.obj; mL2Key = args.first; - mGroupHint = args.second; + mCluster = args.second; // TODO : attributes should be saved to the memory store with // these new values if they differ from the previous ones. // If the state machine is in pure StartedState, then the values to input |