mirror of
https://github.com/vishvananda/netlink.git
synced 2025-09-26 20:01:13 +08:00
13 lines
248 B
Go
13 lines
248 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package netlink
|
|
|
|
func SocketXDPGetInfo(ino uint32, cookie uint64) (*XDPDiagInfoResp, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func SocketDiagXDP() ([]*XDPDiagInfoResp, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|