Path returns the path to the loopback device
()
| 40 | |
| 41 | // Path returns the path to the loopback device |
| 42 | func (device Device) Path() string { |
| 43 | return fmt.Sprintf(DeviceFormatString, device.number) |
| 44 | } |
| 45 | |
| 46 | func NewDevice(number uint64, flags int) Device { |
| 47 | return Device{ |
no outgoing calls
no test coverage detected