model/discovery/Zone.go
crusader 725389f033 ing
2018-09-12 10:55:35 +09:00

32 lines
880 B
Go

package discovery
import (
"sync"
"git.loafle.net/overflow/model/meta"
"git.loafle.net/overflow/model/util"
)
type Zone struct {
MetaIPType *meta.MetaIPType `json:"metaIPType,omitempty"`
Network string `json:"network,omitempty"`
Iface string `json:"iface,omitempty"`
Address string `json:"address,omitempty"`
Mac string `json:"mac,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:"-"`
}
func NewZone(metaIPType *meta.MetaIPType, network string, iface string, address string) *Zone {
return &Zone{
MetaIPType: metaIPType,
Network: network,
Iface: iface,
Address: address,
}
}