mirror of
https://github.com/golang/net.git
synced 2026-03-31 02:17:08 +09:00
This change uses the nettest package where possible and removes the internal/nettest package. Change-Id: I5615a3ab7957183fecea6b5646df99dbb7c186e2 Reviewed-on: https://go-review.googlesource.com/c/net/+/123057 Run-TryBot: Mikio Hara <mikioh.public.networking@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matt Layher <mdlayher@gmail.com>
10 lines
262 B
Go
10 lines
262 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ipv6_test
|
|
|
|
func supportsIPv6MulticastDeliveryOnLoopback() (string, bool) {
|
|
return "", true
|
|
}
|