Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Msglen (0.12 sec)

  1. src/syscall/route_freebsd_64bit.go

    }
    
    func (any *anyMessage) parseInterfaceMessage(b []byte) *InterfaceMessage {
    	p := (*InterfaceMessage)(unsafe.Pointer(any))
    	return &InterfaceMessage{Header: p.Header, Data: b[int(unsafe.Offsetof(p.Header.Data))+int(p.Header.Data.Datalen) : any.Msglen]}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 762 bytes
    - Viewed (0)
  2. src/syscall/ztypes_freebsd_amd64.go

    	SizeofRtMsghdr         = 0x98
    	SizeofRtMetrics        = 0x70
    )
    
    type ifMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      ifData
    }
    
    type IfMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/syscall/ztypes_freebsd_arm.go

    	SizeofRtMsghdr         = 0x5c
    	SizeofRtMetrics        = 0x38
    )
    
    type ifMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      ifData
    }
    
    type IfMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. src/syscall/ztypes_freebsd_arm64.go

    	SizeofRtMsghdr         = 0x98
    	SizeofRtMetrics        = 0x70
    )
    
    type ifMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      ifData
    }
    
    type IfMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	SizeofRtMsghdr         = 0x5c
    	SizeofRtMetrics        = 0x38
    )
    
    type ifMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Data    ifData
    }
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    	SizeofRtMsghdr         = 0x98
    	SizeofRtMetrics        = 0x70
    )
    
    type ifMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Data    ifData
    }
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	SizeofRtMsghdr         = 0x5c
    	SizeofRtMetrics        = 0x38
    )
    
    type ifMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Data    ifData
    }
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/net/interface_aix.go

    	if err != nil {
    		return nil, err
    	}
    	defer poll.CloseFunc(sock)
    
    	var ift []Interface
    	for len(tab) > 0 {
    		ifm := (*syscall.IfMsgHdr)(unsafe.Pointer(&tab[0]))
    		if ifm.Msglen == 0 {
    			break
    		}
    		if ifm.Type == syscall.RTM_IFINFO {
    			if ifindex == 0 || ifindex == int(ifm.Index) {
    				sdl := (*rawSockaddrDatalink)(unsafe.Pointer(&tab[syscall.SizeofIfMsghdr]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. src/syscall/ztypes_freebsd_386.go

    	SizeofRtMsghdr         = 0x5c
    	SizeofRtMetrics        = 0x38
    )
    
    type ifMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      ifData
    }
    
    type IfMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. src/syscall/ztypes_freebsd_riscv64.go

    	SizeofRtMsghdr         = 0x98
    	SizeofRtMetrics        = 0x70
    )
    
    type ifMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      ifData
    }
    
    type IfMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top