mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-13 10:51:05 +02:00
12 lines
174 B
Go
12 lines
174 B
Go
package rtlink
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
type Bridge RtSock
|
|
|
|
func (self *Bridge) Fdb(opts FdbQuery) ([]Ndmsg, error) {
|
|
return (*RtSock)(self).neigh(syscall.AF_BRIDGE, opts)
|
|
}
|