mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-23 00:23:36 +01:00
9 lines
193 B
Go
9 lines
193 B
Go
|
//go:build !linux
|
||
|
|
||
|
package sharedsock
|
||
|
|
||
|
// NewSTUNFilter is a noop method just because we do not support BPF filters on other platforms than Linux
|
||
|
func NewSTUNFilter() BPFFilter {
|
||
|
return nil
|
||
|
}
|