cgo_solaris.go 368 B

12345678910111213141516
  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build cgo && !netgo
  5. package net
  6. /*
  7. #cgo LDFLAGS: -lsocket -lnsl -lsendfile
  8. #include <netdb.h>
  9. */
  10. import "syscall"
  11. const cgoAddrInfoFlags = syscall.AI_CANONNAME | syscall.AI_V4MAPPED | syscall.AI_ALL