1 //go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !solaris && !illumos 2 3 package pool 4 5 import "net" 6 7 func connCheck(conn net.Conn) error { 8 return nil 9 } 10
View as plain text