resolved conflicts for merge of 26ecc31f to honeycomb-plus-aosp
Change-Id: I23f42e247884f0c9d5ae4d3466213592dd3433d9
This commit is contained in:
@@ -1784,6 +1784,12 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
|||||||
LinkProperties p = nt.getLinkProperties();
|
LinkProperties p = nt.getLinkProperties();
|
||||||
if (p == null) return;
|
if (p == null) return;
|
||||||
Collection<InetAddress> dnses = p.getDnses();
|
Collection<InetAddress> dnses = p.getDnses();
|
||||||
|
try {
|
||||||
|
mNetd.setDnsServersForInterface(Integer.toString(netType),
|
||||||
|
NetworkUtils.makeStrings(dnses));
|
||||||
|
} catch (Exception e) {
|
||||||
|
Slog.e(TAG, "exception setting dns servers: " + e);
|
||||||
|
}
|
||||||
boolean changed = false;
|
boolean changed = false;
|
||||||
if (mNetConfigs[netType].isDefault()) {
|
if (mNetConfigs[netType].isDefault()) {
|
||||||
int j = 1;
|
int j = 1;
|
||||||
@@ -1812,6 +1818,10 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
|||||||
SystemProperties.set("net.dns" + j++, dnsString);
|
SystemProperties.set("net.dns" + j++, dnsString);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
mNetd.setDefaultInterfaceForDns(Integer.toString(netType));
|
||||||
|
} catch (Exception e) {
|
||||||
|
Slog.e(TAG, "exception setting default dns interface: " + e);}
|
||||||
for (int k=j ; k<mNumDnsEntries; k++) {
|
for (int k=j ; k<mNumDnsEntries; k++) {
|
||||||
if (changed || !TextUtils.isEmpty(SystemProperties.get("net.dns" + k))) {
|
if (changed || !TextUtils.isEmpty(SystemProperties.get("net.dns" + k))) {
|
||||||
if (DBG) log("erasing net.dns" + k);
|
if (DBG) log("erasing net.dns" + k);
|
||||||
|
|||||||
Reference in New Issue
Block a user