USB TX buffer (general and managed pools).
The TX buffers are more complicated than RX buffers, because they are used also to accelerate TCP retransmissions. When an URB with TCP payload is transmitted, usbnet does not free it automatically, but rather puts it to a retransmission list of the socket, so-called "backlog". Responsibility to free (or retransmit) the URB lays on UIP code in this case. Like in usbnet_rx_buf_t, urb->buf points to the .data field of the structure.
Definition at line 103 of file usbnet.h.