blob: bf2dade3bc3662647a6483e08293d67fd0fceb74 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/**
2 * Copyright (c) 2008, The Android Open Source Project
3 *
Danica Chang6fdd0c62010-08-11 14:54:43 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007 *
Danica Chang6fdd0c62010-08-11 14:54:43 -07008 * http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 *
Danica Chang6fdd0c62010-08-11 14:54:43 -070010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014 * limitations under the License.
15 */
16
17package android.net;
18
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -070019import android.net.LinkInfo;
Robert Greenwaltd192dad2010-09-14 09:18:02 -070020import android.net.LinkProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.net.NetworkInfo;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070022import android.net.NetworkQuotaInfo;
Jeff Sharkeyd2a45872011-05-28 20:56:34 -070023import android.net.NetworkState;
Robert Greenwalt434203a2010-10-11 16:00:27 -070024import android.net.ProxyProperties;
Robert Greenwalt42acef32009-08-12 16:08:25 -070025import android.os.IBinder;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -070026import android.os.Messenger;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070027import android.os.ParcelFileDescriptor;
Wink Savilleab9321d2013-06-29 21:10:57 -070028import android.os.ResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
Chia-chi Yeh2e467642011-07-04 03:23:12 -070030import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070031import com.android.internal.net.VpnConfig;
Jeff Sharkey82f85212012-08-24 11:17:25 -070032import com.android.internal.net.VpnProfile;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070033
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034/**
35 * Interface that answers queries about, and allows changing, the
36 * state of network connectivity.
37 */
38/** {@hide} */
39interface IConnectivityManager
40{
Chad Brubakerd1c87542013-07-16 11:22:32 -070041 // Keep this in sync with framework/native/services/connectivitymanager/ConnectivityManager.h
42 void markSocketAsUser(in ParcelFileDescriptor socket, int uid);
43
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 void setNetworkPreference(int pref);
45
46 int getNetworkPreference();
47
48 NetworkInfo getActiveNetworkInfo();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070049 NetworkInfo getActiveNetworkInfoForUid(int uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050 NetworkInfo getNetworkInfo(int networkType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 NetworkInfo[] getAllNetworkInfo();
52
Robert Greenwalt9b2886e2011-08-31 11:46:42 -070053 boolean isNetworkSupported(int networkType);
54
Robert Greenwaltd192dad2010-09-14 09:18:02 -070055 LinkProperties getActiveLinkProperties();
Robert Greenwaltd192dad2010-09-14 09:18:02 -070056 LinkProperties getLinkProperties(int networkType);
57
Jeff Sharkeyd2a45872011-05-28 20:56:34 -070058 NetworkState[] getAllNetworkState();
59
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070060 NetworkQuotaInfo getActiveNetworkQuotaInfo();
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -070061 boolean isActiveNetworkMetered();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070062
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 boolean setRadios(boolean onOff);
64
65 boolean setRadio(int networkType, boolean turnOn);
66
Robert Greenwalt42acef32009-08-12 16:08:25 -070067 int startUsingNetworkFeature(int networkType, in String feature,
68 in IBinder binder);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069
70 int stopUsingNetworkFeature(int networkType, in String feature);
71
72 boolean requestRouteToHost(int networkType, int hostAddress);
73
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070074 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress);
75
Robert Greenwaltc03fa502010-02-23 18:58:05 -080076 boolean getMobileDataEnabled();
Robert Greenwaltc03fa502010-02-23 18:58:05 -080077 void setMobileDataEnabled(boolean enabled);
78
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070079 /** Policy control over specific {@link NetworkStateTracker}. */
80 void setPolicyDataEnable(int networkType, boolean enabled);
81
Robert Greenwalt5a735062010-03-02 17:25:02 -080082 int tether(String iface);
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -080083
Robert Greenwalt5a735062010-03-02 17:25:02 -080084 int untether(String iface);
85
86 int getLastTetherError(String iface);
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -080087
Robert Greenwalt2a091d72010-02-11 18:18:40 -080088 boolean isTetheringSupported();
89
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -080090 String[] getTetherableIfaces();
91
92 String[] getTetheredIfaces();
Robert Greenwalt2a091d72010-02-11 18:18:40 -080093
Jeff Sharkeycdd02c5d2011-09-16 01:52:49 -070094 /**
95 * Return list of interface pairs that are actively tethered. Even indexes are
96 * remote interface, and odd indexes are corresponding local interfaces.
97 */
98 String[] getTetheredIfacePairs();
99
Robert Greenwalt5a735062010-03-02 17:25:02 -0800100 String[] getTetheringErroredIfaces();
101
Robert Greenwalt2a091d72010-02-11 18:18:40 -0800102 String[] getTetherableUsbRegexs();
103
104 String[] getTetherableWifiRegexs();
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700105
Danica Chang6fdd0c62010-08-11 14:54:43 -0700106 String[] getTetherableBluetoothRegexs();
107
Mike Lockwood6c2260b2011-07-19 13:04:47 -0700108 int setUsbTethering(boolean enable);
109
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700110 void requestNetworkTransitionWakelock(in String forWhom);
Robert Greenwaltca4306c2010-09-09 13:15:32 -0700111
Robert Greenwaltd7085fc2010-09-08 15:24:47 -0700112 void reportInetCondition(int networkType, int percentage);
Robert Greenwalt434203a2010-10-11 16:00:27 -0700113
114 ProxyProperties getGlobalProxy();
115
116 void setGlobalProxy(in ProxyProperties p);
117
118 ProxyProperties getProxy();
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700119
120 void setDataDependency(int networkType, boolean met);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700121
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -0700122 boolean protectVpn(in ParcelFileDescriptor socket);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700123
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700124 boolean prepareVpn(String oldPackage, String newPackage);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700125
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700126 ParcelFileDescriptor establishVpn(in VpnConfig config);
Chia-chi Yeh77fd4852011-07-02 17:15:00 -0700127
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -0700128 VpnConfig getVpnConfig();
129
Jeff Sharkey82f85212012-08-24 11:17:25 -0700130 void startLegacyVpn(in VpnProfile profile);
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700131
132 LegacyVpnInfo getLegacyVpnInfo();
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700133
134 boolean updateLockdownVpn();
Irfan Sheriffda6da092012-08-16 12:49:23 -0700135
136 void captivePortalCheckComplete(in NetworkInfo info);
Robert Greenwalt665e1ae2012-08-21 19:27:00 -0700137
Wink Savilled747cbc2013-08-07 16:22:47 -0700138 void captivePortalCheckCompleted(in NetworkInfo info, boolean isCaptivePortal);
139
Robert Greenwalt665e1ae2012-08-21 19:27:00 -0700140 void supplyMessenger(int networkType, in Messenger messenger);
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700141
142 int findConnectionTypeForIface(in String iface);
Wink Savilleab9321d2013-06-29 21:10:57 -0700143
144 int checkMobileProvisioning(boolean sendNotification, int suggestedTimeOutMs, in ResultReceiver resultReceiver);
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700145
146 String getMobileProvisioningUrl();
Wink Saville42d4f082013-07-20 20:31:59 -0700147
148 String getMobileRedirectedProvisioningUrl();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700149
150 LinkInfo getLinkInfo(int networkType);
151
152 LinkInfo getActiveLinkInfo();
153
154 LinkInfo[] getAllLinkInfo();
155
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156}