From: Mikio Hara Date: Thu, 21 Aug 2014 08:53:45 +0000 (+0900) Subject: net: fix typo X-Git-Tag: go1.4beta1~770 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6b112c24db0a3c6ddd373c2001129f11f7d9e7f1;p=gostls13.git net: fix typo LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/128500043 --- diff --git a/src/pkg/net/sockopt_bsd.go b/src/pkg/net/sockopt_bsd.go index 77d51d7376..2d36a55953 100644 --- a/src/pkg/net/sockopt_bsd.go +++ b/src/pkg/net/sockopt_bsd.go @@ -17,7 +17,7 @@ func setDefaultSockopts(s, family, sotype int, ipv6only bool) error { // On DragonFly BSD, we adjust the ephemeral port // range because unlike other BSD systems its default // port range doesn't conform to IANA recommendation - // as described in RFC 6355 and is pretty narrow. + // as described in RFC 6056 and is pretty narrow. switch family { case syscall.AF_INET: syscall.SetsockoptInt(s, syscall.IPPROTO_IP, syscall.IP_PORTRANGE, syscall.IP_PORTRANGE_HIGH)