netbird/sharedsock/filter_nolinux.go
2023-05-04 12:28:32 +02:00

9 lines
209 B
Go

//go:build !linux
package sharedsock
// NewIncomingSTUNFilter is a noop method just because we do not support BPF filters on other platforms than Linux
func NewIncomingSTUNFilter() BPFFilter {
return nil
}