Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Mtu (0.04 sec)

  1. pkg/proxy/util/nodeport_addresses_test.go

    			cidrs: []string{"10.20.30.0/24"},
    			itfAddrsPairs: []InterfaceAddrsPair{
    				{
    					itf:   net.Interface{Index: 0, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0},
    					addrs: []net.Addr{&net.IPNet{IP: netutils.ParseIPSloppy("10.20.30.51"), Mask: net.CIDRMask(24, 32)}},
    				},
    				{
    					itf:   net.Interface{Index: 2, MTU: 0, Name: "eth1", HardwareAddr: nil, Flags: 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/sys_openbsd.go

    	Type int // interface type
    	MTU  int // maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    func (m *InterfaceMessage) Sys() []Sys {
    	return []Sys{
    		&InterfaceMetrics{
    			Type: int(m.raw[24]),
    			MTU:  int(nativeEndian.Uint32(m.raw[28:32])),
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. src/net/interface_windows.go

    			case windows.IF_TYPE_ATM:
    				ifi.Flags |= FlagBroadcast | FlagPointToPoint | FlagMulticast // assume all services available; LANE, point-to-point and point-to-multipoint
    			}
    			if aa.Mtu == 0xffffffff {
    				ifi.MTU = -1
    			} else {
    				ifi.MTU = int(aa.Mtu)
    			}
    			if aa.PhysicalAddressLength > 0 {
    				ifi.HardwareAddr = make(HardwareAddr, aa.PhysicalAddressLength)
    				copy(ifi.HardwareAddr, aa.PhysicalAddress[:])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/syscall/ztypes_freebsd_arm.go

    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Filt [8]uint32
    }
    
    const (
    	SizeofSockaddrInet4    = 0x10
    	SizeofSockaddrInet6    = 0x1c
    	SizeofSockaddrAny      = 0x6c
    	SizeofSockaddrUnix     = 0x6a
    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/syscall/ztypes_freebsd_arm64.go

    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Filt [8]uint32
    }
    
    const (
    	SizeofSockaddrInet4    = 0x10
    	SizeofSockaddrInet6    = 0x1c
    	SizeofSockaddrAny      = 0x6c
    	SizeofSockaddrUnix     = 0x6a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/lif/link.go

    type Link struct {
    	Name  string // name, equivalent to IP interface name
    	Index int    // index, equivalent to IP interface index
    	Type  int    // type
    	Flags int    // flags
    	MTU   int    // maximum transmission unit, basically link MTU but may differ between IP address families
    	Addr  []byte // address
    }
    
    func (ll *Link) fetch(s uintptr) {
    	var lifr lifreq
    	for i := 0; i < len(ll.Name); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/syscall/ztypes_solaris_amd64.go

    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	X__icmp6_filt [8]uint32
    }
    
    const (
    	SizeofSockaddrInet4    = 0x10
    	SizeofSockaddrInet6    = 0x20
    	SizeofSockaddrAny      = 0xfc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  8. cni/test/testdata/pre/minikube_cni.conf

      "ipam": {
        "type": "host-local",
        "subnet": "10.1.0.0/16",
        "gateway": "10.1.0.1",
        "routes": [
          {
            "dst": "0.0.0.0/0"
          }
        ]
      },
      "isGateway": true,
      "mtu": 1460,
      "name": "rkt.kubernetes.io",
      "type": "bridge"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 315 bytes
    - Viewed (0)
  9. cni/test/testdata/pre/noname_calico.conflist

    {
      "cniVersion": "0.3.1",
      "plugins": [
        {
          "type": "calico",
          "etcd_endpoints": "http://10.110.0.136:6666",
          "plugin_log_level": "info",
          "mtu": 1500,
          "ipam": {
            "type": "calico-ipam"
          },
          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
          "type": "portmap",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 499 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/route/sys_netbsd.go

    	Type int // interface type
    	MTU  int // maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    func (m *InterfaceMessage) Sys() []Sys {
    	return []Sys{
    		&InterfaceMetrics{
    			Type: int(m.raw[m.extOff]),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top