5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 03:42:32 +00:00

Fix IfName='none'

This commit is contained in:
Neil Alexander 2018-06-02 23:29:06 +01:00
parent 2e188917d8
commit 6d9d01dae1

View File

@ -37,6 +37,9 @@ func (tun *tunDevice) init(core *Core) {
}
func (tun *tunDevice) start(ifname string, iftapmode bool, addr string, mtu int) error {
if ifname == "none" {
return nil
}
if err := tun.setup(ifname, iftapmode, addr, mtu); err != nil {
return err
}