mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-10 07:20:39 +03:00
Fix source address selection
This commit is contained in:
parent
2219d96df1
commit
c839012580
@ -245,15 +245,27 @@ func (iface *tcpInterface) call(saddr string, socksaddr *string, sintf string) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if (src.To4() != nil) == (dst.IP.To4() != nil) {
|
if src.Equal(dst.IP) {
|
||||||
if addrindex == len(addrs)-1 || src.IsGlobalUnicast() {
|
continue
|
||||||
dialer.LocalAddr = &net.TCPAddr{
|
}
|
||||||
IP: src,
|
if !src.IsGlobalUnicast() && !src.IsLinkLocalUnicast() {
|
||||||
Port: 0,
|
continue
|
||||||
Zone: sintf,
|
}
|
||||||
}
|
bothglobal := src.IsGlobalUnicast() == dst.IP.IsGlobalUnicast()
|
||||||
break
|
bothlinklocal := src.IsLinkLocalUnicast() == dst.IP.IsLinkLocalUnicast()
|
||||||
|
if !bothglobal && !bothlinklocal {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if (src.To4() != nil) != (dst.IP.To4() != nil) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if bothglobal || bothlinklocal || addrindex == len(addrs)-1 {
|
||||||
|
dialer.LocalAddr = &net.TCPAddr{
|
||||||
|
IP: src,
|
||||||
|
Port: 0,
|
||||||
|
Zone: sintf,
|
||||||
}
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if dialer.LocalAddr == nil {
|
if dialer.LocalAddr == nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user