Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NetlinkRouteRequest (0.28 sec)

  1. src/syscall/netlink_linux.go

    // properly.
    func rtaAlignOf(attrlen int) int {
    	return (attrlen + RTA_ALIGNTO - 1) & ^(RTA_ALIGNTO - 1)
    }
    
    // NetlinkRouteRequest represents a request message to receive routing
    // and link states from the kernel.
    type NetlinkRouteRequest struct {
    	Header NlMsghdr
    	Data   RtGenmsg
    }
    
    func (rr *NetlinkRouteRequest) toWireFormat() []byte {
    	b := make([]byte, rr.Header.Len)
    	*(*uint32)(unsafe.Pointer(&b[0:4][0])) = rr.Header.Len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg syscall (linux-386), type NetlinkRouteAttr struct, Value []uint8
    pkg syscall (linux-386), type NetlinkRouteRequest struct
    pkg syscall (linux-386), type NetlinkRouteRequest struct, Data RtGenmsg
    pkg syscall (linux-386), type NetlinkRouteRequest struct, Header NlMsghdr
    pkg syscall (linux-386), type NlAttr struct
    pkg syscall (linux-386), type NlAttr struct, Len uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NetlinkRIB", Func, 0},
    		{"NetlinkRouteAttr", Type, 0},
    		{"NetlinkRouteAttr.Attr", Field, 0},
    		{"NetlinkRouteAttr.Value", Field, 0},
    		{"NetlinkRouteRequest", Type, 0},
    		{"NetlinkRouteRequest.Data", Field, 0},
    		{"NetlinkRouteRequest.Header", Field, 0},
    		{"NewCallback", Func, 0},
    		{"NewCallbackCDecl", Func, 3},
    		{"NewLazyDLL", Func, 0},
    		{"NlAttr", Type, 0},
    		{"NlAttr.Len", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type NetlinkRouteAttr struct, Value []uint8
    pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct
    pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Data RtGenmsg
    pkg syscall (linux-arm-cgo), type NetlinkRouteRequest struct, Header NlMsghdr
    pkg syscall (linux-arm-cgo), type NlAttr struct
    pkg syscall (linux-arm-cgo), type NlAttr struct, Len uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top