Searched defs:fromIface (Results 1 - 1 of 1) sorted by last modified time

/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java1379 private void modifyInterfaceForward(boolean add, String fromIface, String toIface) { argument
1380 final Command cmd = new Command("ipfwd", add ? "add" : "remove", fromIface, toIface);
1389 public void startInterfaceForwarding(String fromIface, String toIface) { argument
1391 modifyInterfaceForward(true, fromIface, toIface);
1395 public void stopInterfaceForwarding(String fromIface, String toIface) { argument
1397 modifyInterfaceForward(false, fromIface, toIface);

Completed in 65 milliseconds