mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-09 01:50:34 +08:00
17 lines
308 B
Go
17 lines
308 B
Go
//go:build !linux || android
|
|
|
|
package wireguard
|
|
|
|
import (
|
|
"errors"
|
|
"net/netip"
|
|
)
|
|
|
|
func createKernelTun(localAddresses []netip.Addr, mtu int, handler promiscuousModeHandler) (t Tunnel, err error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|
|
|
|
func KernelTunSupported() (bool, error) {
|
|
return false, nil
|
|
}
|