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