Merge "arc: Use ChromeOS host's IP address for WiFi ADB" into main
This commit is contained in:
@@ -22,8 +22,10 @@ import android.net.ConnectivityManager;
|
|||||||
import android.net.LinkAddress;
|
import android.net.LinkAddress;
|
||||||
import android.net.LinkProperties;
|
import android.net.LinkProperties;
|
||||||
import android.net.wifi.WifiManager;
|
import android.net.wifi.WifiManager;
|
||||||
|
import android.os.Build;
|
||||||
import android.os.RemoteException;
|
import android.os.RemoteException;
|
||||||
import android.os.ServiceManager;
|
import android.os.ServiceManager;
|
||||||
|
import android.os.SystemProperties;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
@@ -100,12 +102,23 @@ public class AdbIpAddressPreferenceController extends AbstractConnectivityPrefer
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String getIpv4Address() {
|
public String getIpv4Address() {
|
||||||
|
// ARC specific - from here
|
||||||
|
// Get the host's Wi-Fi IP address instead of guest's IP.
|
||||||
|
if (Build.IS_ARC) {
|
||||||
|
final String[] addrs =
|
||||||
|
SystemProperties.get("vendor.arc.net.ipv4.host_wifi_address").split(",");
|
||||||
|
// ADB over Wi-Fi uses the first available available network configuration.
|
||||||
|
if (addrs.length > 0) {
|
||||||
|
return addrs[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ARC specific - till here.
|
||||||
return getDefaultIpAddresses(mCM);
|
return getDefaultIpAddresses(mCM);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void updateConnectivity() {
|
protected void updateConnectivity() {
|
||||||
String ipAddress = getDefaultIpAddresses(mCM);
|
String ipAddress = getIpv4Address();
|
||||||
if (ipAddress != null) {
|
if (ipAddress != null) {
|
||||||
int port = getPort();
|
int port = getPort();
|
||||||
if (port <= 0) {
|
if (port <= 0) {
|
||||||
|
Reference in New Issue
Block a user