Commit 76a1cb5a authored by Mikio Hara's avatar Mikio Hara

net: fix comment, make use of listenerBacklog

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5653056
parent 0e3514ea
...@@ -27,8 +27,7 @@ func TestDialTimeout(t *testing.T) { ...@@ -27,8 +27,7 @@ func TestDialTimeout(t *testing.T) {
errc := make(chan error) errc := make(chan error)
const SOMAXCONN = 0x80 // copied from syscall, but not always available numConns := listenerBacklog + 10
const numConns = SOMAXCONN + 10
// TODO(bradfitz): It's hard to test this in a portable // TODO(bradfitz): It's hard to test this in a portable
// way. This is unforunate, but works for now. // way. This is unforunate, but works for now.
...@@ -54,8 +53,8 @@ func TestDialTimeout(t *testing.T) { ...@@ -54,8 +53,8 @@ func TestDialTimeout(t *testing.T) {
}() }()
default: default:
// TODO(bradfitz): // TODO(bradfitz):
// OpenBSD may have a reject route to 10/8. // OpenBSD may have a reject route to 127/8 except 127.0.0.1/32
// FreeBSD likely works, but is untested. // by default. FreeBSD likely works, but is untested.
t.Logf("skipping test on %q; untested.", runtime.GOOS) t.Logf("skipping test on %q; untested.", runtime.GOOS)
return return
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment