mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
9 lines
209 B
Go
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
|
|
}
|