mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
7dd76c3411
This is implemented via GetBestInterfaceEx. Should we encounter errors or fail to resolve a valid, non-Tailscale interface, we fall back to returning the index for the default interface instead. Fixes #12551 Signed-off-by: Aaron Klotz <aaron@tailscale.com>
22 lines
424 B
Go
22 lines
424 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build darwin || windows
|
|
|
|
package netns
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
)
|
|
|
|
func parseAddress(address string) (addr netip.Addr, err error) {
|
|
host, _, err := net.SplitHostPort(address)
|
|
if err != nil {
|
|
// error means the string didn't contain a port number, so use the string directly
|
|
host = address
|
|
}
|
|
|
|
return netip.ParseAddr(host)
|
|
}
|