]> Cypherpunks repositories - gostls13.git/commitdiff
net: fix EAI_BADFLAGS error on freebsd
authorMikio Hara <mikioh.mikioh@gmail.com>
Thu, 21 Apr 2011 14:22:53 +0000 (10:22 -0400)
committerRuss Cox <rsc@golang.org>
Thu, 21 Apr 2011 14:22:53 +0000 (10:22 -0400)
R=rsc
CC=golang-dev
https://golang.org/cl/4442072

src/pkg/net/Makefile
src/pkg/net/cgo_bsd.go [new file with mode: 0644]
src/pkg/net/cgo_linux.go [new file with mode: 0644]
src/pkg/net/cgo_unix.go

index a14027eb90f3394b6281327f112e6bd8d547caa6..221871cb179781764c50ea33aec2457b411b4718 100644 (file)
@@ -31,6 +31,7 @@ GOFILES_freebsd=\
        port.go\
 
 CGOFILES_freebsd=\
+       cgo_bsd.go\
        cgo_unix.go\
 
 GOFILES_darwin=\
@@ -42,6 +43,7 @@ GOFILES_darwin=\
        port.go\
 
 CGOFILES_darwin=\
+       cgo_bsd.go\
        cgo_unix.go\
        
 GOFILES_linux=\
@@ -57,6 +59,7 @@ ifeq ($(GOARCH),arm)
 GOFILES_linux+=cgo_stub.go
 else
 CGOFILES_linux=\
+       cgo_linux.go\
        cgo_unix.go
 endif
 
diff --git a/src/pkg/net/cgo_bsd.go b/src/pkg/net/cgo_bsd.go
new file mode 100644 (file)
index 0000000..4984df4
--- /dev/null
@@ -0,0 +1,14 @@
+// Copyright 2011 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 net
+
+/*
+#include <netdb.h>
+*/
+import "C"
+
+func cgoAddrInfoMask() C.int {
+       return C.AI_MASK
+}
diff --git a/src/pkg/net/cgo_linux.go b/src/pkg/net/cgo_linux.go
new file mode 100644 (file)
index 0000000..8d4413d
--- /dev/null
@@ -0,0 +1,14 @@
+// Copyright 2011 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 net
+
+/*
+#include <netdb.h>
+*/
+import "C"
+
+func cgoAddrInfoMask() C.int {
+       return C.AI_CANONNAME | C.AI_V4MAPPED | C.AI_ALL
+}
index fdf061ccf117e0d06ff43b1a5fb31d898f261b3d..a3711d6012880e9a0f0722da554e0588749b43e3 100644 (file)
@@ -86,7 +86,7 @@ func cgoLookupIPCNAME(name string) (addrs []IP, cname string, err os.Error, comp
        // and similarly for IPv6), but in practice setting it causes
        // getaddrinfo to return the wrong canonical name on Linux.
        // So definitely leave it out.
-       hints.ai_flags = C.AI_ALL | C.AI_V4MAPPED | C.AI_CANONNAME
+       hints.ai_flags = (C.AI_ALL | C.AI_V4MAPPED | C.AI_CANONNAME) & cgoAddrInfoMask()
 
        h := C.CString(name)
        defer C.free(unsafe.Pointer(h))