String implements the Stringer interface for Device
()
| 52 | |
| 53 | // String implements the Stringer interface for Device |
| 54 | func (device Device) String() string { |
| 55 | return device.Path() |
| 56 | } |
| 57 | |
| 58 | // GetFree searches for the first free loopback device. If it cannot find one, |
| 59 | // it will attempt to create one. If anything fails, GetFree will return an |
no test coverage detected