2018-04-26 07:37:59 +00:00
|
|
|
package discovery
|
2018-04-12 09:38:04 +00:00
|
|
|
|
2018-06-12 13:13:22 +00:00
|
|
|
import (
|
|
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
|
|
|
)
|
|
|
|
|
2018-04-27 16:02:30 +00:00
|
|
|
type DiscoverHost struct {
|
2018-06-20 11:24:48 +00:00
|
|
|
MetaIPType *meta.MetaIPType `json:"metaIPType,omitempty"`
|
2018-06-12 13:13:22 +00:00
|
|
|
|
|
|
|
FirstScanRange string `json:"firstScanRange,omitempty"`
|
|
|
|
LastScanRange string `json:"lastScanRange,omitempty"`
|
|
|
|
ExcludeHosts []string `json:"excludeHosts,omitempty"`
|
|
|
|
IncludeHosts []string `json:"includeHosts,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
|
2018-04-27 16:02:30 +00:00
|
|
|
DiscoverPort *DiscoverPort `json:"discoverPort,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
}
|