2022-03-08 12:28:09 -08:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-12-02 17:49:21 -06:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-08-24 14:45:55 -07:00
|
|
|
//go:build go1.14
|
2020-12-02 17:49:21 -06:00
|
|
|
// +build go1.14
|
|
|
|
|
2021-06-22 11:23:19 -04:00
|
|
|
package testlib
|
2020-12-02 17:49:21 -06: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
|
|
|
|
}
|