summaryrefslogtreecommitdiff
path: root/services/java
diff options
context:
space:
mode:
author Nathan Harold <nharold@google.com> 2017-05-24 22:09:57 +0000
committer android-build-merger <android-build-merger@google.com> 2017-05-24 22:09:57 +0000
commite1612d04de3bef0e970165ea80aebb6fba392240 (patch)
tree76edccb4b3007639e81d9bddb47b8258af6db106 /services/java
parent9a99745428f32e75b7a944d02685206ca7afd01c (diff)
parent6bebfa708db1cbaf295c76f57f75ada2c5b38544 (diff)
Merge "[DO NOT MERGE] Do not start the IpSecService" into oc-dev am: 72cdc9cdae
am: 6bebfa708d Change-Id: I5cb366480533afdb767144d760198d8ddfaa3dbd
Diffstat (limited to 'services/java')
-rw-r--r--services/java/com/android/server/SystemServer.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index 836f0b8665c9..66849c3e1348 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -677,7 +677,6 @@ public final class SystemServer {
VibratorService vibrator = null;
IStorageManager storageManager = null;
NetworkManagementService networkManagement = null;
- IpSecService ipSecService = null;
NetworkStatsService networkStats = null;
NetworkPolicyManagerService networkPolicy = null;
ConnectivityService connectivity = null;
@@ -1035,15 +1034,6 @@ public final class SystemServer {
reportWtf("starting NetworkManagement Service", e);
}
traceEnd();
-
- traceBeginAndSlog("StartIpSecService");
- try {
- ipSecService = IpSecService.create(context);
- ServiceManager.addService(Context.IPSEC_SERVICE, ipSecService);
- } catch (Throwable e) {
- reportWtf("starting IpSec Service", e);
- }
- traceEnd();
}
if (!disableNonCoreServices && !disableTextServices) {
@@ -1669,7 +1659,6 @@ public final class SystemServer {
final TelephonyRegistry telephonyRegistryF = telephonyRegistry;
final MediaRouterService mediaRouterF = mediaRouter;
final MmsServiceBroker mmsServiceF = mmsService;
- final IpSecService ipSecServiceF = ipSecService;
final WindowManagerService windowManagerF = wm;
// We now tell the activity manager it is okay to run third party
@@ -1734,13 +1723,6 @@ public final class SystemServer {
.networkScoreAndNetworkManagementServiceReady();
}
traceEnd();
- traceBeginAndSlog("MakeIpSecServiceReady");
- try {
- if (ipSecServiceF != null) ipSecServiceF.systemReady();
- } catch (Throwable e) {
- reportWtf("making IpSec Service ready", e);
- }
- traceEnd();
traceBeginAndSlog("MakeNetworkStatsServiceReady");
try {
if (networkStatsF != null) networkStatsF.systemReady();