fffcb7f5b4
- Two of the linters changed their names - Updated code and nolint comments to make all linters pass with 1.44.2 - Added a new hack/install-linter.sh script to help developers install the expected version of the linter for local development
30 lines
641 B
Go
30 lines
641 B
Go
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//nolint:goimports // not an import
|
|
// +build go1.14
|
|
|
|
package testlib
|
|
|
|
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
|
|
}
|