Write one or more packets to the device (without any additional headers). On a successful write it returns the number of packets written. A nonzero offset can be used to instruct the Device on where to begin writing from each packet contained within the bufs slice.
(bufs [][]byte, offset int)
| 33 | // offset can be used to instruct the Device on where to begin writing from |
| 34 | // each packet contained within the bufs slice. |
| 35 | Write(bufs [][]byte, offset int) (int, error) |
| 36 | |
| 37 | // MTU returns the MTU of the Device. |
| 38 | MTU() (int, error) |
no outgoing calls