2018-06-01 10:24:59 -04:00
|
|
|
// Copyright 2017 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package ipv6
|
|
|
|
|
|
|
|
import (
|
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"golang.org/x/net/bpf"
|
|
|
|
"golang.org/x/net/internal/socket"
|
2020-02-28 02:52:14 -05:00
|
|
|
"golang.org/x/sys/unix"
|
2018-06-01 10:24:59 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstruction) error {
|
2020-02-28 02:52:14 -05:00
|
|
|
prog := unix.SockFprog{
|
2018-06-01 10:24:59 -04:00
|
|
|
Len: uint16(len(f)),
|
2020-02-28 02:52:14 -05:00
|
|
|
Filter: (*unix.SockFilter)(unsafe.Pointer(&f[0])),
|
2018-06-01 10:24:59 -04:00
|
|
|
}
|
2020-02-28 02:52:14 -05:00
|
|
|
b := (*[unix.SizeofSockFprog]byte)(unsafe.Pointer(&prog))[:unix.SizeofSockFprog]
|
2018-06-01 10:24:59 -04:00
|
|
|
return so.Set(c, b)
|
|
|
|
}
|