2023-03-28 19:39:22 +01:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-11-16 12:04:01 -06:00
|
|
|
//go:build !linux
|
2021-02-19 14:38:43 -06:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package xds
|
|
|
|
|
|
|
|
func kernelSupportsIPv6() (bool, error) {
|
|
|
|
return true, nil
|
|
|
|
}
|