Files
openlan/pkg/schema/online.go
2022-09-27 12:53:19 +08:00

13 lines
337 B
Go

package schema
type OnLine struct {
HitTime int64 `json:"aliveTime"`
UpTime int64 `json:"uptime"`
EthType uint16 `json:"ethType"`
IpSource string `json:"sourceAddr"`
IpDest string `json:"destAddr"`
IpProto string `json:"protocol"`
PortSource uint16 `json:"sourcePort"`
PortDest uint16 `json:"destPort"`
}