Read one or more packets from the Device (without any additional headers). On a successful read it returns the number of packets read, and sets packet lengths within the sizes slice. len(sizes) must be >= len(bufs). A nonzero offset can be used to instruct the Device on where to begin reading into e
(bufs [][]byte, sizes []int, offset int)
| 27 | // A nonzero offset can be used to instruct the Device on where to begin |
| 28 | // reading into each element of the bufs slice. |
| 29 | Read(bufs [][]byte, sizes []int, offset int) (n int, err error) |
| 30 | |
| 31 | // Write one or more packets to the device (without any additional headers). |
| 32 | // On a successful write it returns the number of packets written. A nonzero |
no outgoing calls