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