2016-07-22 18:15:38 +00:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2015-01-15 00:27:56 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build cgo,!netgo
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
//#include <netdb.h>
|
|
|
|
import "C"
|
|
|
|
|
2015-10-31 00:59:47 +00:00
|
|
|
const cgoAddrInfoFlags = C.AI_CANONNAME
|