2022-03-08 20:28:09 +00:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-12-02 23:49:21 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-03-08 20:28:09 +00:00
|
|
|
//nolint:goimports // not an import
|
2020-12-02 23:49:21 +00:00
|
|
|
// +build go1.14
|
|
|
|
|
2021-06-22 15:23:19 +00:00
|
|
|
package testlib
|
2020-12-02 23:49:21 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
// LookupIP looks up the IP address of the provided hostname, preferring IPv4.
|
|
|
|
func LookupIP(ctx context.Context, hostname string) ([]net.IP, error) {
|
|
|
|
ips, err := net.DefaultResolver.LookupIPAddr(ctx, hostname)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter out to only IPv4 addresses
|
|
|
|
var results []net.IP
|
|
|
|
for _, ip := range ips {
|
|
|
|
if ip.IP.To4() != nil {
|
|
|
|
results = append(results, ip.IP)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return results, nil
|
|
|
|
}
|