(ip net.IP)
| 135 | } |
| 136 | |
| 137 | func (m *MockSession) Skip(ip net.IP) bool { |
| 138 | if m.skipIPs == nil { |
| 139 | return false |
| 140 | } |
| 141 | return m.skipIPs[ip.String()] |
| 142 | } |
| 143 | |
| 144 | // MockNetRecon implements a minimal net.recon module for testing |
| 145 | type MockNetRecon struct { |
no test coverage detected