mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 12:42:27 +08:00
fix: tun create panic
This commit is contained in:
parent
78c7b6259c
commit
a9839abd4c
@ -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 New Issue
Block a user