mirror of
https://github.com/golang/go
synced 2024-11-14 18:20:30 -07:00
6d3a7e79a4
This change adds a type addrinfoErrno to represent getaddrinfo, getnameinfo-specific errors, and uses it in cgo-based lookup functions. Also retags cgo files for clarification and does minor cleanup. Change-Id: I6db7130ad7bf35bbd4e8839a97759e1364c43828 Reviewed-on: https://go-review.googlesource.com/9020 Reviewed-by: Ian Lance Taylor <iant@golang.org>
21 lines
636 B
Go
21 lines
636 B
Go
// 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.
|
|
|
|
// +build !android,cgo,!netgo
|
|
|
|
package net
|
|
|
|
/*
|
|
#include <netdb.h>
|
|
*/
|
|
import "C"
|
|
|
|
// NOTE(rsc): In theory there are approximately balanced
|
|
// arguments for and against including AI_ADDRCONFIG
|
|
// in the flags (it includes IPv4 results only on IPv4 systems,
|
|
// and similarly for IPv6), but in practice setting it causes
|
|
// getaddrinfo to return the wrong canonical name on Linux.
|
|
// So definitely leave it out.
|
|
const cgoAddrInfoFlags = C.AI_CANONNAME | C.AI_V4MAPPED | C.AI_ALL
|