Expose local route exclusion API in NetworkAgentConfig

Bug: 184750836
Test: make update-api
Test: atest FrameworksNetTests
Change-Id: I70470ab3a945570a23607e39d18f9825d9e1d7aa
CTS-Coverage-Bug: 184750836
This commit is contained in:
Chiachang Wang
2022-01-27 11:32:53 +08:00
parent bfdd0f3c3c
commit e84d7d90d3
2 changed files with 4 additions and 1 deletions

View File

@@ -127,6 +127,7 @@ package android.net {
public static final class NetworkAgentConfig.Builder {
method @NonNull public android.net.NetworkAgentConfig.Builder setBypassableVpn(boolean);
method @NonNull public android.net.NetworkAgentConfig.Builder setExcludeLocalRoutesVpn(boolean);
method @NonNull public android.net.NetworkAgentConfig.Builder setSubscriberId(@Nullable String);
}

View File

@@ -425,8 +425,10 @@ public final class NetworkAgentConfig implements Parcelable {
* Sets whether the local traffic is exempted from VPN.
*
* @return this builder, to facilitate chaining.
* @hide TODO(184750836): Unhide once the implementation is completed.
* @hide
*/
@NonNull
@SystemApi(client = MODULE_LIBRARIES)
public Builder setExcludeLocalRoutesVpn(boolean excludeLocalRoutes) {
mConfig.excludeLocalRouteVpn = excludeLocalRoutes;
return this;