Merge "Replace the hidden ProxyInfo methods usage" am: 2f66e59e05 am: 3ad73342c7
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1641827 Change-Id: I7e7ec3721de73523f52718665bc1763f75184a56
This commit is contained in:
@@ -83,6 +83,7 @@ import com.android.settingslib.wifi.AccessPoint;
|
||||
import java.net.Inet4Address;
|
||||
import java.net.InetAddress;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
@@ -878,7 +879,8 @@ public class WifiConfigController implements TextWatcher,
|
||||
result = R.string.proxy_error_invalid_port;
|
||||
}
|
||||
if (result == 0) {
|
||||
mHttpProxy = new ProxyInfo(host, port, exclusionList);
|
||||
mHttpProxy = ProxyInfo.buildDirectProxy(
|
||||
host, port, Arrays.asList(exclusionList.split(",")));
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
@@ -892,7 +894,7 @@ public class WifiConfigController implements TextWatcher,
|
||||
if (uri == null) {
|
||||
return false;
|
||||
}
|
||||
mHttpProxy = new ProxyInfo(uri);
|
||||
mHttpProxy = ProxyInfo.buildPacProxy(uri);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -83,6 +83,7 @@ import com.android.wifitrackerlib.WifiEntry.ConnectedInfo;
|
||||
import java.net.Inet4Address;
|
||||
import java.net.InetAddress;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
@@ -860,7 +861,8 @@ public class WifiConfigController2 implements TextWatcher,
|
||||
result = R.string.proxy_error_invalid_port;
|
||||
}
|
||||
if (result == 0) {
|
||||
mHttpProxy = new ProxyInfo(host, port, exclusionList);
|
||||
mHttpProxy = ProxyInfo.buildDirectProxy(
|
||||
host, port, Arrays.asList(exclusionList.split(",")));
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
@@ -874,7 +876,7 @@ public class WifiConfigController2 implements TextWatcher,
|
||||
if (uri == null) {
|
||||
return false;
|
||||
}
|
||||
mHttpProxy = new ProxyInfo(uri);
|
||||
mHttpProxy = ProxyInfo.buildPacProxy(uri);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user