2020-12-02 23:49:21 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
// +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) {
|
|
|
|
return net.DefaultResolver.LookupIP(ctx, "ip4", hostname)
|
|
|
|
}
|