lib: Factor out getting IP address from net.Addr (#8538)
... and add fast paths for common cases.
This commit is contained in:
@@ -12,6 +12,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/syncthing/syncthing/lib/dialer"
|
||||
"github.com/syncthing/syncthing/lib/osutil"
|
||||
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
|
||||
"github.com/syncthing/syncthing/lib/relay/protocol"
|
||||
)
|
||||
@@ -66,7 +67,7 @@ func GetInvitationFromRelay(ctx context.Context, uri *url.URL, id syncthingproto
|
||||
l.Debugln("Received invitation", msg, "via", conn.LocalAddr())
|
||||
ip := net.IP(msg.Address)
|
||||
if len(ip) == 0 || ip.IsUnspecified() {
|
||||
msg.Address = remoteIPBytes(conn)
|
||||
msg.Address, _ = osutil.IPFromAddr(conn.RemoteAddr())
|
||||
}
|
||||
return msg, nil
|
||||
default:
|
||||
@@ -163,11 +164,3 @@ func configForCerts(certs []tls.Certificate) *tls.Config {
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func remoteIPBytes(conn net.Conn) []byte {
|
||||
addr := conn.RemoteAddr().String()
|
||||
if host, _, err := net.SplitHostPort(addr); err == nil {
|
||||
addr = host
|
||||
}
|
||||
return net.ParseIP(addr)[:]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user