17 lines
450 B
Go
17 lines
450 B
Go
|
package discovery
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/overflow/model/meta"
|
||
|
)
|
||
|
|
||
|
type DiscoverHost struct {
|
||
|
MetaIPType *meta.MetaIPType `json:"metaIPType,omitempty"`
|
||
|
|
||
|
FirstScanRange string `json:"firstScanRange,omitempty"`
|
||
|
LastScanRange string `json:"lastScanRange,omitempty"`
|
||
|
ExcludeHosts []string `json:"excludeHosts,omitempty"`
|
||
|
IncludeHosts []string `json:"includeHosts,omitempty"`
|
||
|
|
||
|
DiscoverPort *DiscoverPort `json:"discoverPort,omitempty"`
|
||
|
}
|