fix: tun create panic
This commit is contained in:
parent
e6c60f0304
commit
f8b117007b
1 changed files with 6 additions and 1 deletions
|
@ -532,7 +532,12 @@ func ReCreateTun(tunConf LC.Tun, tcpIn chan<- C.ConnContext, udpIn chan<- C.Pack
|
|||
return
|
||||
}
|
||||
|
||||
tunLister, err = sing_tun.New(tunConf, tcpIn, udpIn)
|
||||
lister, err := sing_tun.New(tunConf, tcpIn, udpIn)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
tunLister = lister
|
||||
|
||||
log.Infoln("[TUN] Tun adapter listening at: %s", tunLister.Address())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue