mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
15 lines
389 B
Go
15 lines
389 B
Go
package schema
|
|
|
|
type Output struct {
|
|
Network string `json:"network"`
|
|
Protocol string `json:"protocol"`
|
|
Remote string `json:"remote"`
|
|
DstPort int `json:"dstPort"`
|
|
Segment int `json:"segment"`
|
|
Device string `json:"device"`
|
|
RxBytes uint64 `json:"rxBytes"`
|
|
TxBytes uint64 `json:"txBytes"`
|
|
ErrPkt uint64 `json:"errors"`
|
|
AliveTime int64 `json:"aliveTime"`
|
|
}
|