package discovery import ( "fmt" "net" discoveryM "git.loafle.net/overflow/overflow_commons_go/modules/discovery/model" "git.loafle.net/overflow/overflow_discovery/discovery/ipv4" "git.loafle.net/overflow/overflow_discovery/discovery/ipv6" ) func scanService(port *discoveryM.Port, ds *discoveryM.DiscoveryService, resultChan chan interface{}, errChan chan error, doneChan chan<- struct{}, stopChan chan struct{}) { defer func() { doneChan <- struct{}{} }() _, ipNet, err := net.ParseCIDR(port.Host.Zone.Network) if nil != err { errChan <- err return } switch len(ipNet.IP) { case net.IPv4len: ipv4.ScanService(port, ds, resultChan, errChan, stopChan) case net.IPv6len: ipv6.ScanService(port, ds, resultChan, errChan, stopChan) default: errChan <- fmt.Errorf("Discovery: Not supported ip length") return } }