2019-11-22 16:43:50 +00:00
|
|
|
// +build !linux,!darwin,!windows,!openbsd,!freebsd,!mobile
|
2017-12-29 04:16:20 +00:00
|
|
|
|
2019-03-28 00:30:25 +00:00
|
|
|
package tuntap
|
2017-12-29 04:16:20 +00:00
|
|
|
|
|
|
|
// This is to catch unsupported platforms
|
|
|
|
// If your platform supports tun devices, you could try configuring it manually
|
|
|
|
|
2019-11-22 16:43:50 +00:00
|
|
|
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-04 22:37:51 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
tun.iface = iface
|
2019-11-22 16:43:50 +00:00
|
|
|
if mtu, err := iface.MTU(); err == nil {
|
|
|
|
tun.mtu = getSupportedMTU(mtu)
|
|
|
|
} else {
|
|
|
|
tun.mtu = 0
|
|
|
|
}
|
2018-01-04 22:37:51 +00:00
|
|
|
return tun.setupAddress(addr)
|
2018-01-04 22:34:17 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 21:45:53 +00: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.
|
2019-03-28 00:30:25 +00:00
|
|
|
func (tun *TunAdapter) setupAddress(addr string) error {
|
2019-11-22 18:39:27 +00:00
|
|
|
tun.log.Warnln("Warning: Platform not supported, you must set the address of", tun.Name(), "to", addr)
|
2018-01-04 22:37:51 +00:00
|
|
|
return nil
|
2017-12-29 04:16:20 +00:00
|
|
|
}
|