mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-08-02 06:08:53 +00:00
Expose function to test if a serial is TCP/IP
In practice, it just tests if the serial contains a ':', which is sufficient to distinguish ip:port from a real USB serial. PR #3005 <https://github.com/Genymobile/scrcpy/pull/3005>
This commit is contained in:
parent
4389de1c23
commit
02d46b2262
3 changed files with 15 additions and 4 deletions
|
@ -659,10 +659,7 @@ sc_server_configure_tcpip_known_address(struct sc_server *server,
|
|||
static bool
|
||||
sc_server_configure_tcpip_unknown_address(struct sc_server *server,
|
||||
const char *serial) {
|
||||
// The serial is either the real serial when connected via USB, or
|
||||
// the IP:PORT when connected over TCP/IP. Only the latter contains
|
||||
// a colon.
|
||||
bool is_already_tcpip = strchr(serial, ':');
|
||||
bool is_already_tcpip = sc_adb_is_serial_tcpip(serial);
|
||||
if (is_already_tcpip) {
|
||||
// Nothing to do
|
||||
LOGI("Device already connected via TCP/IP: %s", serial);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue