ing
This commit is contained in:
parent
a9833d3070
commit
c920ee3c3f
|
@ -10,11 +10,17 @@ type Host struct {
|
|||
Name string `json:"name,omitempty"`
|
||||
Address string `json:"address,omitempty"`
|
||||
Mac string `json:"mac,omitempty"`
|
||||
Meta map[string]string `json:"meta,omitempty"`
|
||||
|
||||
OsType string `json:"osType,omitempty"`
|
||||
|
||||
DeviceType string `json:"deviceType,omitempty"`
|
||||
DeviceVendor string `json:"deviceVendor,omitempty"`
|
||||
DeviceModel string `json:"deviceModel,omitempty"`
|
||||
|
||||
Meta map[string]map[string]string `json:"meta,omitempty"`
|
||||
DiscoveredBy []string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
PortList []*Port `json:"portList,omitempty"`
|
||||
|
||||
DiscoveredBy string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
}
|
||||
|
|
|
@ -11,12 +11,12 @@ import (
|
|||
type Port struct {
|
||||
MetaPortType *meta.MetaPortType `json:"metaPortType,omitempty"`
|
||||
PortNumber json.Number `json:"portNumber,omitempty"`
|
||||
Meta map[string]string `json:"meta,omitempty"`
|
||||
|
||||
Meta map[string]map[string]string `json:"meta,omitempty"`
|
||||
DiscoveredBy []string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
|
||||
Host *Host `json:"host,omitempty"`
|
||||
ServiceList []*Service `json:"serviceList,omitempty"`
|
||||
|
||||
DiscoveredBy string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
UDPLayer gopacket.Layer `json:"-"`
|
||||
}
|
||||
|
|
|
@ -10,11 +10,10 @@ type Service struct {
|
|||
Key string `json:"key,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
Description string `json:"description,omitempty"`
|
||||
Meta map[string]string `json:"meta,omitempty"`
|
||||
|
||||
Meta map[string]map[string]string `json:"meta,omitempty"`
|
||||
DiscoveredBy []string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
|
||||
Port *Port `json:"port,omitempty"`
|
||||
|
||||
DiscoveredBy string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
Metadata map[string]string `json:"metadata,omitempty"`
|
||||
}
|
||||
|
|
|
@ -13,9 +13,9 @@ type Zone struct {
|
|||
MetaIPType *meta.MetaIPType `json:"metaIPType,omitempty"`
|
||||
Address string `json:"address,omitempty"`
|
||||
Mac string `json:"mac,omitempty"`
|
||||
Meta map[string]string `json:"meta,omitempty"`
|
||||
|
||||
DiscoveredBy string `json:"discoveredBy,omitempty"`
|
||||
Meta map[string]map[string]string `json:"meta,omitempty"`
|
||||
DiscoveredBy []string `json:"discoveredBy,omitempty"`
|
||||
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
||||
|
||||
mtx sync.RWMutex `json:"-"`
|
||||
|
|
Loading…
Reference in New Issue
Block a user