4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-14 23:16:06 +00:00

Merge pull request #184 from yggdrasil-network/source-interface

Ignore peer in InterfacePeers when source interface not found
This commit is contained in:
Neil Alexander
2018-09-28 15:16:34 +01:00
committed by GitHub

View File

@ -161,7 +161,9 @@ func (iface *tcpInterface) call(saddr string, socksaddr *string, sintf string) {
dialer := net.Dialer{}
if sintf != "" {
ief, err := net.InterfaceByName(sintf)
if err == nil {
if err != nil {
return
} else {
if ief.Flags & net.FlagUp == 0 {
return
}