overflow_discovery/discovery/ipv4/port_udp.go

15 lines
299 B
Go
Raw Normal View History

2017-11-18 13:03:37 +00:00
package ipv4
2017-11-21 05:31:17 +00:00
import (
"sync"
2017-11-18 13:03:37 +00:00
2017-11-21 05:31:17 +00:00
"git.loafle.net/overflow/overflow_discovery/api/module/discovery/model"
)
func scanPortUDP(host *model.Host, dp *model.DiscoveryPort, resultChan chan interface{}, errChan chan error, stopChan chan struct{}, wg *sync.WaitGroup) {
defer func() {
wg.Done()
}()
2017-11-18 13:03:37 +00:00
}