(ip net.IP)
| 102 | } |
| 103 | |
| 104 | func (m *MockSession) Skip(ip net.IP) bool { |
| 105 | if m.skipIPs == nil { |
| 106 | return false |
| 107 | } |
| 108 | return m.skipIPs[ip.String()] |
| 109 | } |
| 110 | |
| 111 | // MockNetRecon implements a minimal net.recon module for testing |
| 112 | type MockNetRecon struct { |
no test coverage detected