Lines Matching refs:asocket
3 The data structure of asocket, with their queue, amessage, and apackets are described
4 in [internals.md](internals.md). But understanding asocket, how they are used, and how they are
7 ## Why ADB needs asocket
9 The concept of `asocket` was created to achieve two things.
15 but TCP multiplexing was not leveraged. Even when using TCP, a transport still uses `asocket`
18 ## Data direction and asocket peers
20 - A asocket is uni-directional. It only allows data to be `enqueue`d.
21 - A asocket is paired with a peer asocket which handles traffic in the opposite direction.
23 ## Types of asocket
25 There are several types of `asocket`. Some are easy to understand because they
26 extend `asocket`.
33 However there are "undeclared" types, whose behavior differs only via the `asocket`
61 is able to route the apacket to the local asocket by using `apacket.msg1` which
62 points to the target local asocket `id`.