mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
10 lines
321 B
Go
10 lines
321 B
Go
package sharedsock
|
|
|
|
import "golang.org/x/net/bpf"
|
|
|
|
// BPFFilter is a generic filter that provides ipv4 and ipv6 BPF instructions
|
|
type BPFFilter interface {
|
|
// GetInstructions returns raw BPF instructions for ipv4 and ipv6
|
|
GetInstructions(port uint32) (ipv4 []bpf.RawInstruction, ipv6 []bpf.RawInstruction, err error)
|
|
}
|