diff options
| author | Lorenzo Colitti <lorenzo@google.com> | 2019-01-12 01:54:23 +0900 |
|---|---|---|
| committer | Lorenzo Colitti <lorenzo@google.com> | 2019-01-15 11:13:07 +0900 |
| commit | 9307ca2ba13dd74ee1e4ad51ea4cf57741e23f0e (patch) | |
| tree | b04383fc56526cf9587bc455c017564ae9b0e5a9 /core/java | |
| parent | 59b34472c94d412c61c923c3835cd1c2f6527cfe (diff) | |
Delete the clatd functions from NetworkManagementService.
Make Nat464Xlat talk to netd directly instead of through
NetworkManagementService. The methods in NetworkmanagementService
don't really provide any value: since the only thing they do is
call into netd, we might as well have the callers talk to netd
directly,
In order to do this, pass INetworkManagementService and INetd to
the NetworkAgentInfo constructor, and update callers appropriately.
Bug: 65674744
Test: builds, boots
Test: atest FrameworksNetTests
Change-Id: Iac4cfe709c6279e4d9682b6754963e533707bd12
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/os/INetworkManagementService.aidl | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/core/java/android/os/INetworkManagementService.aidl b/core/java/android/os/INetworkManagementService.aidl index fdd74882eb39..8ced7225b0d4 100644 --- a/core/java/android/os/INetworkManagementService.aidl +++ b/core/java/android/os/INetworkManagementService.aidl @@ -356,16 +356,6 @@ interface INetworkManagementService void removeVpnUidRanges(int netId, in UidRange[] ranges); /** - * Start the clatd (464xlat) service on the given interface. - */ - void startClatd(String interfaceName); - - /** - * Stop the clatd (464xlat) service on the given interface. - */ - void stopClatd(String interfaceName); - - /** * Start listening for mobile activity state changes. */ void registerNetworkActivityListener(INetworkActivityListener listener); |
