File: cgo_resnew.go

package info (click to toggle)
golang-1.6 1.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 60,180 kB
  • ctags: 121,823
  • sloc: asm: 36,903; ansic: 7,370; sh: 1,434; perl: 1,120; xml: 623; python: 286; yacc: 155; makefile: 107; cpp: 22; awk: 7
file content (23 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2015 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 cgo,!netgo
// +build darwin linux,!android netbsd solaris

package net

/*
#include <sys/types.h>
#include <sys/socket.h>

#include <netdb.h>
*/
import "C"

import "unsafe"

func cgoNameinfoPTR(b []byte, sa *C.struct_sockaddr, salen C.socklen_t) (int, error) {
	gerrno, err := C.getnameinfo(sa, salen, (*C.char)(unsafe.Pointer(&b[0])), C.socklen_t(len(b)), nil, 0, C.NI_NAMEREQD)
	return int(gerrno), err
}