mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
15 lines
327 B
Go
15 lines
327 B
Go
//go:build !linux || android
|
|
|
|
package sharedsock
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"runtime"
|
|
)
|
|
|
|
// Listen is not supported on other platforms then Linux
|
|
func Listen(port int, filter BPFFilter) (net.PacketConn, error) {
|
|
return nil, fmt.Errorf(fmt.Sprintf("Not supported OS %s. SharedSocket is only supported on Linux", runtime.GOOS))
|
|
}
|