Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for wireFormats (0.19 sec)

  1. src/vendor/golang.org/x/net/route/sys.go

    	kernelAlign  int
    	rtmVersion   byte
    	wireFormats  map[int]*wireFormat
    )
    
    func init() {
    	i := uint32(1)
    	b := (*[4]byte)(unsafe.Pointer(&i))
    	if b[0] == 1 {
    		nativeEndian = littleEndian
    	} else {
    		nativeEndian = bigEndian
    	}
    	// might get overridden in probeRoutingStack
    	rtmVersion = syscall.RTM_VERSION
    	kernelAlign, wireFormats = probeRoutingStack()
    }
    
    func roundup(l int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 940 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/route_classic.go

    //go:build darwin || dragonfly || freebsd || netbsd
    
    package route
    
    import (
    	"runtime"
    	"syscall"
    )
    
    func (m *RouteMessage) marshal() ([]byte, error) {
    	w, ok := wireFormats[m.Type]
    	if !ok {
    		return nil, errUnsupportedMessage
    	}
    	l := w.bodyOff + addrsSpace(m.Addrs)
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		// Fix stray pointer writes on macOS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/message.go

    		if l == 0 {
    			return nil, errInvalidMessage
    		}
    		if len(b) < l {
    			return nil, errMessageTooShort
    		}
    		if b[2] != rtmVersion {
    			b = b[l:]
    			continue
    		}
    		if w, ok := wireFormats[int(b[3])]; !ok {
    			nskips++
    		} else {
    			m, err := w.parse(typ, b[:l])
    			if err != nil {
    				return nil, err
    			}
    			if m == nil {
    				nskips++
    			} else {
    				msgs = append(msgs, m)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/sys_dragonfly.go

    		},
    	}
    }
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	var p uintptr
    	rtm := &wireFormat{extOff: 40, bodyOff: sizeofRtMsghdrDragonFlyBSD4}
    	rtm.parse = rtm.parseRouteMessage
    	ifm := &wireFormat{extOff: 16, bodyOff: sizeofIfMsghdrDragonFlyBSD4}
    	ifm.parse = ifm.parseInterfaceMessage
    	ifam := &wireFormat{extOff: sizeofIfaMsghdrDragonFlyBSD4, bodyOff: sizeofIfaMsghdrDragonFlyBSD4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/sys_netbsd.go

    }
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	rtm := &wireFormat{extOff: 40, bodyOff: sizeofRtMsghdrNetBSD7}
    	rtm.parse = rtm.parseRouteMessage
    	ifm := &wireFormat{extOff: 16, bodyOff: sizeofIfMsghdrNetBSD7}
    	ifm.parse = ifm.parseInterfaceMessage
    	ifam := &wireFormat{extOff: sizeofIfaMsghdrNetBSD7, bodyOff: sizeofIfaMsghdrNetBSD7}
    	ifam.parse = ifam.parseInterfaceAddrMessage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/sys_freebsd.go

    	} else {
    		rtm = &wireFormat{extOff: sizeofRtMsghdrFreeBSD10 - sizeofRtMetricsFreeBSD10, bodyOff: sizeofRtMsghdrFreeBSD10}
    		ifm = &wireFormat{extOff: 16}
    		ifam = &wireFormat{extOff: sizeofIfaMsghdrFreeBSD10, bodyOff: sizeofIfaMsghdrFreeBSD10}
    		ifmam = &wireFormat{extOff: sizeofIfmaMsghdrFreeBSD10, bodyOff: sizeofIfmaMsghdrFreeBSD10}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/route/sys_darwin.go

    	}
    }
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	rtm := &wireFormat{extOff: 36, bodyOff: sizeofRtMsghdrDarwin15}
    	rtm.parse = rtm.parseRouteMessage
    	rtm2 := &wireFormat{extOff: 36, bodyOff: sizeofRtMsghdr2Darwin15}
    	rtm2.parse = rtm2.parseRouteMessage
    	ifm := &wireFormat{extOff: 16, bodyOff: sizeofIfMsghdrDarwin15}
    	ifm.parse = ifm.parseInterfaceMessage
    	ifm2 := &wireFormat{extOff: 32, bodyOff: sizeofIfMsghdr2Darwin15}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/route/sys_openbsd.go

    		},
    	}
    }
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	var p uintptr
    	rtm := &wireFormat{extOff: -1, bodyOff: -1}
    	rtm.parse = rtm.parseRouteMessage
    	ifm := &wireFormat{extOff: -1, bodyOff: -1}
    	ifm.parse = ifm.parseInterfaceMessage
    	ifam := &wireFormat{extOff: -1, bodyOff: -1}
    	ifam.parse = ifam.parseInterfaceAddrMessage
    	ifanm := &wireFormat{extOff: -1, bodyOff: -1}
    	ifanm.parse = ifanm.parseInterfaceAnnounceMessage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/interface_openbsd.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package route
    
    import "syscall"
    
    func (*wireFormat) parseInterfaceMessage(_ RIBType, b []byte) (Message, error) {
    	if len(b) < 32 {
    		return nil, errMessageTooShort
    	}
    	l := int(nativeEndian.Uint16(b[:2]))
    	if len(b) < l {
    		return nil, errInvalidMessage
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/route/interface_freebsd.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package route
    
    import "syscall"
    
    func (w *wireFormat) parseInterfaceMessage(typ RIBType, b []byte) (Message, error) {
    	var extOff, bodyOff int
    	if typ == syscall.NET_RT_IFLISTL {
    		if len(b) < 20 {
    			return nil, errMessageTooShort
    		}
    		extOff = int(nativeEndian.Uint16(b[18:20]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top