summaryrefslogtreecommitdiff
path: root/services/java
diff options
context:
space:
mode:
author Nathan Harold <nharold@google.com> 2017-05-24 21:56:36 +0000
committer android-build-merger <android-build-merger@google.com> 2017-05-24 21:56:36 +0000
commit6bebfa708db1cbaf295c76f57f75ada2c5b38544 (patch)
treeb71cbd9b8df46e51030359df3e625871b4d456d6 /services/java
parentab0605ceb537bd10f946a41f44d689dc5e88355d (diff)
parent72cdc9cdae6891cc64ad49920106cd15602ba607 (diff)
Merge "[DO NOT MERGE] Do not start the IpSecService" into oc-dev
am: 72cdc9cdae Change-Id: I7c6360ee53e929e0e03dcd1e1a767d98af94f620
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 db7b843fdafd..e8920cdd9511 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -673,7 +673,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;
@@ -1026,15 +1025,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) {
@@ -1652,7 +1642,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
@@ -1717,13 +1706,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();