Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Cmsghdr (0.19 sec)

  1. src/syscall/sockcmsg_unix.go

    	return cmsgAlignOf(SizeofCmsghdr) + cmsgAlignOf(datalen)
    }
    
    func (h *Cmsghdr) data(offset uintptr) unsafe.Pointer {
    	return unsafe.Pointer(uintptr(unsafe.Pointer(h)) + uintptr(cmsgAlignOf(SizeofCmsghdr)) + offset)
    }
    
    // SocketControlMessage represents a socket control message.
    type SocketControlMessage struct {
    	Header Cmsghdr
    	Data   []byte
    }
    
    // ParseSocketControlMessage parses b as an array of socket control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_IP
    	h.Type = IP_PKTINFO
    	h.SetLen(CmsgLen(SizeofInet4Pktinfo))
    	*(*Inet4Pktinfo)(h.data(0)) = *info
    	return b
    }
    
    // PktInfo6 encodes Inet6Pktinfo into a socket control message of type IPV6_PKTINFO.
    func PktInfo6(info *Inet6Pktinfo) []byte {
    	b := make([]byte, CmsgSpace(SizeofInet6Pktinfo))
    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_IPV6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Iov        *Iovec
    	Control    *byte
    	Flags      int32
    	Namelen    int32
    	Iovlen     int32
    	Controllen int32
    }
    
    type Cmsghdr struct {
    	Len   int32
    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Addr    [4]byte /* in_addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	_          [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    	Ifru [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	_          [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	Addr RawSockaddr
    	Pad  [96]int8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    	Ifru [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	Pad  [96]uint8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	_          [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    	Addr RawSockaddr
    	Pad  [96]uint8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    }
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    	Ifru [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    	Pad  [96]uint8
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	_          [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    	Type  int32
    }
    
    type ifreq struct {
    	Ifrn [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top