mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-04-03 13:53:34 +03:00
Fix: fix tun local addr
This commit is contained in:
parent
0e245b8936
commit
9936a9469d
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ func Start(fd int, gateway, portal, dns string) (io.Closer, error) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
lAddr := conn.RemoteAddr().(*net.TCPAddr)
|
lAddr := conn.LocalAddr().(*net.TCPAddr)
|
||||||
rAddr := conn.RemoteAddr().(*net.TCPAddr)
|
rAddr := conn.RemoteAddr().(*net.TCPAddr)
|
||||||
|
|
||||||
if ipv4LoopBack.Contains(rAddr.IP) {
|
if ipv4LoopBack.Contains(rAddr.IP) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue