mirror of
https://github.com/golang/net.git
synced 2026-03-31 10:27:08 +09:00
Also marks test helper functions. Change-Id: I1baf791b6d4199699db20834fa6e1a3bd0733cf0 Reviewed-on: https://go-review.googlesource.com/c/net/+/167340 Run-TryBot: Mikio Hara <mikioh.public.networking@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matt Layher <mdlayher@gmail.com>
35 lines
610 B
Go
35 lines
610 B
Go
// Copyright 2013 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
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
)
|
|
|
|
func connector(t *testing.T, network, addr string, done chan<- bool) {
|
|
t.Helper()
|
|
defer func() { done <- true }()
|
|
|
|
c, err := net.Dial(network, addr)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
c.Close()
|
|
}
|
|
|
|
func acceptor(t *testing.T, ln net.Listener, done chan<- bool) {
|
|
t.Helper()
|
|
defer func() { done <- true }()
|
|
|
|
c, err := ln.Accept()
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
c.Close()
|
|
}
|