| 7 | type Resolver []Source |
| 8 | |
| 9 | type Source interface { |
| 10 | Name() string |
| 11 | Visit(func(name string, addrs []string)) |
| 12 | LookupAddr(addr string) []string |
| 13 | LookupHost(addr string) []string |
| 14 | } |
| 15 | |
| 16 | type sourceMAC interface { |
| 17 | LookupMAC(mac string) []string |
no outgoing calls
no test coverage detected
searching dependent graphs…