golang.org/x/sys/unix.SocketControlMessage.Data (field)

5 uses

	golang.org/x/sys/unix (current package)
		sockcmsg_unix.go#L34: 	Data   []byte
		sockcmsg_unix.go#L47: 		m := SocketControlMessage{Header: *h, Data: dbuf}
		sockcmsg_unix.go#L86: 	fds := make([]int, len(m.Data)>>2)
		sockcmsg_unix.go#L87: 	for i, j := 0, 0; i < len(m.Data); i += 4 {
		sockcmsg_unix.go#L88: 		fds[j] = int(*(*int32)(unsafe.Pointer(&m.Data[i])))