Merge "Update VPN isolation code for excluded routes"

This commit is contained in:
Prerana Patil
2022-05-03 17:40:12 +00:00
committed by Gerrit Code Review
3 changed files with 28 additions and 1 deletions

View File

@@ -1365,6 +1365,21 @@ public final class LinkProperties implements Parcelable {
return false;
}
/**
* Returns true if this link has a throw route.
*
* @return {@code true} if there is an exclude route, {@code false} otherwise.
* @hide
*/
public boolean hasExcludeRoute() {
for (RouteInfo r : mRoutes) {
if (r.getType() == RouteInfo.RTN_THROW) {
return true;
}
}
return false;
}
/**
* Compares this {@code LinkProperties} interface name against the target
*