Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for Msglen (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go

    	Iqdrops    uint64
    	Noproto    uint64
    	Lastchange Timespec
    }
    
    type IfaMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Metric    int32
    	Index     uint16
    	Pad_cgo_0 [6]byte
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Name    [16]int8
    	What    uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go

    	_            [4]byte
    	Lastchange   Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go

    	Capabilities uint32
    	Lastchange   Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    	Capabilities uint32
    	Lastchange   Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    	Capabilities uint32
    	Lastchange   Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Lastchange Timeval32
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/syscall/route_bsd.go

    	type linkLayerAddr struct {
    		Type byte
    		Nlen byte
    		Alen byte
    		Slen byte
    	}
    	lla := (*linkLayerAddr)(unsafe.Pointer(&b[0]))
    	l := 4 + int(lla.Nlen) + int(lla.Alen) + int(lla.Slen)
    	if len(b) < l {
    		return nil, 0, EINVAL
    	}
    	b = b[4:]
    	sa := &SockaddrDatalink{Type: lla.Type, Nlen: lla.Nlen, Alen: lla.Alen, Slen: lla.Slen}
    	for i := 0; len(sa.Data) > i && i < l-4; i++ {
    		sa.Data[i] = int8(b[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/syscall/netlink_linux.go

    // Netlink sockets and messages
    
    package syscall
    
    import (
    	"sync"
    	"unsafe"
    )
    
    // Round the length of a netlink message up to align it properly.
    func nlmAlignOf(msglen int) int {
    	return (msglen + NLMSG_ALIGNTO - 1) & ^(NLMSG_ALIGNTO - 1)
    }
    
    // Round the length of a netlink route attribute up to align it
    // properly.
    func rtaAlignOf(attrlen int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/syscall/ztypes_aix_ppc64.go

    	SizeofICMPv6Filter     = 0x20
    )
    
    const (
    	PTRACE_TRACEME = 0x0
    	PTRACE_CONT    = 0x7
    	PTRACE_KILL    = 0x8
    )
    
    const (
    	SizeofIfMsghdr = 0x10
    )
    
    type IfMsgHdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Addrlen   uint8
    	Pad_cgo_0 [1]byte
    }
    
    type Utsname struct {
    	Sysname  [32]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 14:36:41 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	SizeofIPv6MTUInfo      = 0x20
    	SizeofMsghdr           = 0x1c
    	SizeofCmsghdr          = 0xc
    	SizeofICMPv6Filter     = 0x20
    )
    
    const (
    	SizeofIfMsghdr = 0x10
    )
    
    type IfMsgHdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Addrlen uint8
    	_       [1]byte
    }
    
    type FdSet struct {
    	Bits [2048]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top