2022-08-24 14:45:55 -07: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) {
|
|
|
|
return net.DefaultResolver.LookupIP(ctx, "ip4", hostname)
|
|
|
|
}
|