Merge "adbd: allow port configuration on host."

This commit is contained in:
Treehugger Robot 2019-10-16 23:22:44 +00:00 committed by Gerrit Code Review
commit 2fd9d735ea

View file

@ -248,6 +248,12 @@ int adbd_main(int server_port) {
prop_port = android::base::GetProperty("persist.adb.tcp.port", "");
}
#if !defined(__ANDROID__)
if (prop_port.empty() && getenv("ADBD_PORT")) {
prop_port = getenv("ADBD_PORT");
}
#endif
int port;
if (sscanf(prop_port.c_str(), "%d", &port) == 1 && port > 0) {
D("using port=%d", port);