overflow_discovery/api/module/discovery/model/discovery.go

41 lines
1003 B
Go
Raw Normal View History

2017-11-15 10:38:42 +00:00
package model
type DiscoveryZone struct {
ExcludePatterns []string `json:"excludePatterns"`
DiscoveryHost *DiscoveryHost `json:"discoveryHost"`
}
type DiscoveryHost struct {
FirstScanRange string `json:"firstScanRange"`
LastScanRange string `json:"lastScanRange"`
ExcludeHosts []string `json:"excludeHosts"`
DiscoveryPort *DiscoveryPort `json:"discoveryPort"`
}
type DiscoveryPort struct {
FirstScanRange int `json:"firstScanRange"`
LastScanRange int `json:"lastScanRange"`
ExcludePorts []int `json:"excludePorts"`
2017-11-21 05:31:17 +00:00
IncludeTCP bool `json:"includeTCP"`
IncludeUDP bool `json:"includeUDP"`
2017-11-15 10:38:42 +00:00
DiscoveryService *DiscoveryService `json:"discoveryService"`
}
type DiscoveryService struct {
IncludeServices []string `json:"includeServices"`
}
/*
Dzone --> zone --> Dhost --> host --> Dport --> port --> Dservice --> service
zone --> Dhost --> host --> Dport --> port --> Dservice --> service
host --> Dport --> port --> Dservice --> service
port --> Dservice --> service
*/