23 lines
569 B
Go
23 lines
569 B
Go
package discovery
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"git.loafle.net/overflow/model/meta"
|
|
"git.loafle.net/overflow/model/util"
|
|
"github.com/google/gopacket"
|
|
)
|
|
|
|
type Port struct {
|
|
MetaPortType *meta.MetaPortType `json:"metaPortType,omitempty"`
|
|
PortNumber json.Number `json:"portNumber,omitempty"`
|
|
Meta map[string]string `json:"meta,omitempty"`
|
|
|
|
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
|
|
|
|
Host *Host `json:"host,omitempty"`
|
|
ServiceList []*Service `json:"serviceList,omitempty"`
|
|
|
|
UDPLayer gopacket.Layer `json:"-"`
|
|
}
|