Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e64db47 authored by Roman Kiryanov's avatar Roman Kiryanov
Browse files

adbd: add vsock to AdbTransportType



adbd already supports the vsock transport
and emulators (cuttlefish and goldfish)
already use it.

Bug: 402444824
Test: presubmit
Flag: EXEMPT no new behavior
Change-Id: I0727cea39fb354d9355d15f01b02f02494b8d56b
Signed-off-by: default avatarRoman Kiryanov <rkir@google.com>
parent b605af83
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ __BEGIN_DECLS
enum AdbTransportType : int32_t {
    kAdbTransportTypeUsb = 0,
    kAdbTransportTypeWifi,
    kAdbTransportTypeVsock,
};
static_assert(sizeof(AdbTransportType) == sizeof(int32_t), "Unexpected AdbTransportType size");