mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 06:20:26 +00:00
Fix IfName='none'
This commit is contained in:
parent
2e188917d8
commit
6d9d01dae1
@ -37,6 +37,9 @@ func (tun *tunDevice) init(core *Core) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (tun *tunDevice) start(ifname string, iftapmode bool, addr string, mtu int) error {
|
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 {
|
if err := tun.setup(ifname, iftapmode, addr, mtu); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user