mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
19 lines
241 B
Go
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
|
|
}
|