summaryrefslogtreecommitdiff
path: root/services/java
diff options
context:
space:
mode:
author Nathan Harold <nharold@google.com> 2017-05-24 21:36:15 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-05-24 21:36:19 +0000
commit72cdc9cdae6891cc64ad49920106cd15602ba607 (patch)
treee6a31e7e7ba8a2476f46ef2119d9326a90865a78 /services/java
parent4e962321ad30709d04ca23e59aec26015d3a39a3 (diff)
parent41004ff4113dc9175c993638a47af602af6d8a98 (diff)
Merge "[DO NOT MERGE] Do not start the IpSecService" into oc-dev
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 b620b3e0e6e9..1d44a205ac10 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -671,7 +671,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;
@@ -1024,15 +1023,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) {
@@ -1643,7 +1633,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
@@ -1708,13 +1697,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();