Files
openlan/pkg/libol/struct.go
Daniel Ding da0d6d853d
Some checks failed
Coverage CI / build (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
Ubuntu CI / build (push) Has been cancelled
fea: show kernel neighbors.
2025-11-26 15:02:51 +08:00

19 lines
241 B
Go

package libol
type Prefix struct {
Link string
Dst string
Src string
Gw string
Protocol string
Priority int
Table int
}
type Neighbor struct {
Link string
Address string
HwAddr string
State string
}