package discovery type DiscoverPort struct { DiscoveryConfig *DiscoveryConfig `json:"discoveryConfig,omitempty"` FirstScanRange int `json:"firstScanRange,omitempty"` LastScanRange int `json:"lastScanRange,omitempty"` ExcludePorts []int `json:"excludePorts,omitempty"` IncludeTCP bool `json:"includeTCP,omitempty"` IncludeUDP bool `json:"includeUDP,omitempty"` DiscoverService *DiscoverService `json:"discoverService,omitempty"` } func (dp *DiscoverPort) Contains(port int) bool { if dp.FirstScanRange > port { return false } if dp.LastScanRange < port { return false } for _, p := range dp.ExcludePorts { if p == port { return false } } return true }