diff options
author | Colin Cross <ccross@android.com> | 2014-01-27 21:35:19 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-01-27 21:35:19 +0100 |
commit | f353207298ed14d0e6943353dd9788421a7537b8 (patch) | |
tree | aa6e2ff0fb0d0accd7ca27231c6e9e717f69e9a4 /minadbd/transport.c | |
parent | Merge "adbd: switch to su domain when running as root" (diff) | |
parent | minadbd: remove dead code (diff) | |
download | android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.tar android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.tar.gz android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.tar.bz2 android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.tar.lz android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.tar.xz android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.tar.zst android_bootable_recovery-f353207298ed14d0e6943353dd9788421a7537b8.zip |
Diffstat (limited to 'minadbd/transport.c')
-rw-r--r-- | minadbd/transport.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/minadbd/transport.c b/minadbd/transport.c index ff2004932..4c0c97f75 100644 --- a/minadbd/transport.c +++ b/minadbd/transport.c @@ -678,27 +678,6 @@ retry: return result; } -void register_socket_transport(int s, const char *serial, int port, int local) -{ - atransport *t = calloc(1, sizeof(atransport)); - char buff[32]; - - if (!serial) { - snprintf(buff, sizeof buff, "T-%p", t); - serial = buff; - } - D("transport: %s init'ing for socket %d, on port %d\n", serial, s, port); - if ( init_socket_transport(t, s, port, local) < 0 ) { - adb_close(s); - free(t); - return; - } - if(serial) { - t->serial = strdup(serial); - } - register_transport(t); -} - void register_usb_transport(usb_handle *usb, const char *serial, unsigned writeable) { atransport *t = calloc(1, sizeof(atransport)); |