yggdrasil-go/src/tuntap/tun_other.go

33 lines
947 B
Go
Raw Normal View History

// +build !linux,!darwin,!windows,!openbsd,!freebsd,!mobile
2017-12-29 07:16:20 +03:00
package tuntap
2017-12-29 07:16:20 +03:00
// This is to catch unsupported platforms
// If your platform supports tun devices, you could try configuring it manually
import (
wgtun "golang.zx2c4.com/wireguard/tun"
)
// Configures the TUN adapter with the correct IPv6 address and MTU.
func (tun *TunAdapter) setup(ifname string, addr string, mtu int) error {
iface, err := wgtun.CreateTUN(ifname, mtu)
2018-01-05 01:37:51 +03:00
if err != nil {
panic(err)
}
tun.iface = iface
if mtu, err := iface.MTU(); err == nil {
tun.mtu = getSupportedMTU(mtu)
} else {
tun.mtu = 0
}
2018-01-05 01:37:51 +03:00
return tun.setupAddress(addr)
}
2018-06-13 00:45:53 +03:00
// We don't know how to set the IPv6 address on an unknown platform, therefore
// write about it to stdout and don't try to do anything further.
func (tun *TunAdapter) setupAddress(addr string) error {
2019-11-22 21:39:27 +03:00
tun.log.Warnln("Warning: Platform not supported, you must set the address of", tun.Name(), "to", addr)
2018-01-05 01:37:51 +03:00
return nil
2017-12-29 07:16:20 +03:00
}