1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-04-24 03:19:22 +02:00
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
}