syscall.SocketControlMessage.Data (field)
7 uses
syscall (current package)
sockcmsg_linux.go#L34: if uintptr(len(m.Data)) < unsafe.Sizeof(Ucred{}) {
sockcmsg_linux.go#L37: ucred := *(*Ucred)(unsafe.Pointer(&m.Data[0]))
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])))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |