Merge "Refine network-related commands porting"

am: 82696f8e4c

Change-Id: I1829678dd0071d4d9c51ec69d15b4975530000a8
This commit is contained in:
Luke Huang
2018-10-23 20:47:27 -07:00
committed by android-build-merger

View File

@@ -2548,18 +2548,18 @@ public class NetworkManagementService extends INetworkManagementService.Stub
@Override
public void addInterfaceToLocalNetwork(String iface, List<RouteInfo> routes) {
modifyInterfaceInNetwork(MODIFY_OPERATION_ADD, INetd.NETID_LOCAL, iface);
modifyInterfaceInNetwork(MODIFY_OPERATION_ADD, INetd.LOCAL_NET_ID, iface);
for (RouteInfo route : routes) {
if (!route.isDefaultRoute()) {
modifyRoute(MODIFY_OPERATION_ADD, INetd.NETID_LOCAL, route);
modifyRoute(MODIFY_OPERATION_ADD, INetd.LOCAL_NET_ID, route);
}
}
}
@Override
public void removeInterfaceFromLocalNetwork(String iface) {
modifyInterfaceInNetwork(MODIFY_OPERATION_REMOVE, INetd.NETID_LOCAL, iface);
modifyInterfaceInNetwork(MODIFY_OPERATION_REMOVE, INetd.LOCAL_NET_ID, iface);
}
@Override
@@ -2568,7 +2568,7 @@ public class NetworkManagementService extends INetworkManagementService.Stub
for (RouteInfo route : routes) {
try {
modifyRoute(MODIFY_OPERATION_REMOVE, INetd.NETID_LOCAL, route);
modifyRoute(MODIFY_OPERATION_REMOVE, INetd.LOCAL_NET_ID, route);
} catch (IllegalStateException e) {
failures++;
}