Update vendored packages
This commit is contained in:
parent
84eaa8fecd
commit
ce117d7a40
119 changed files with 2565 additions and 1524 deletions
7
vendor/github.com/mdlayher/netlink/conn_others.go
generated
vendored
7
vendor/github.com/mdlayher/netlink/conn_others.go
generated
vendored
|
|
@ -5,6 +5,8 @@ package netlink
|
|||
import (
|
||||
"fmt"
|
||||
"runtime"
|
||||
|
||||
"golang.org/x/net/bpf"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
@ -49,6 +51,11 @@ func (c *conn) LeaveGroup(group uint32) error {
|
|||
return errUnimplemented
|
||||
}
|
||||
|
||||
// SetBPF always returns an error.
|
||||
func (c *conn) SetBPF(filter []bpf.RawInstruction) error {
|
||||
return errUnimplemented
|
||||
}
|
||||
|
||||
// newError always returns an error.
|
||||
func newError(errno int) error {
|
||||
return errUnimplemented
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue