mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 17:17:00 +08:00
13 lines
347 B
Go
13 lines
347 B
Go
package schema
|
|
|
|
type OnLine struct {
|
|
HitTime int64 `json:"hittime"`
|
|
UpTime int64 `json:"uptime"`
|
|
EthType uint16 `json:"ethType"`
|
|
IpSource string `json:"ipSource"`
|
|
IpDest string `json:"ipDestination"`
|
|
IpProto string `json:"ipProtocol"`
|
|
PortSource uint16 `json:"portSource"`
|
|
PortDest uint16 `json:"portDestination"`
|
|
}
|