File returns the file descriptor of the device.
()
| 20 | type Device interface { |
| 21 | // File returns the file descriptor of the device. |
| 22 | File() *os.File |
| 23 | |
| 24 | // Read one or more packets from the Device (without any additional headers). |
| 25 | // On a successful read it returns the number of packets read, and sets |