Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for OperStatus (0.16 sec)

  1. src/net/dnsconfig_windows.go

    			conf.servers = defaultNS
    		}
    	}()
    	aas, err := adapterAddresses()
    	if err != nil {
    		return
    	}
    
    	for _, aa := range aas {
    		// Only take interfaces whose OperStatus is IfOperStatusUp(0x01) into DNS configs.
    		if aa.OperStatus != windows.IfOperStatusUp {
    			continue
    		}
    
    		// Only take interfaces which have at least one gateway
    		if aa.FirstGatewayAddress == nil {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/net/interface_windows.go

    			index = aa.Ipv6IfIndex
    		}
    		if ifindex == 0 || ifindex == int(index) {
    			ifi := Interface{
    				Index: int(index),
    				Name:  windows.UTF16PtrToString(aa.FriendlyName),
    			}
    			if aa.OperStatus == windows.IfOperStatusUp {
    				ifi.Flags |= FlagUp
    				ifi.Flags |= FlagRunning
    			}
    			// For now we need to infer link-layer service
    			// capabilities from media types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    	PhysicalAddress        [syscall.MAX_ADAPTER_ADDRESS_LENGTH]byte
    	PhysicalAddressLength  uint32
    	Flags                  uint32
    	Mtu                    uint32
    	IfType                 uint32
    	OperStatus             uint32
    	Ipv6IfIndex            uint32
    	ZoneIndices            [16]uint32
    	FirstPrefix            *IpAdapterPrefix
    	TransmitLinkSpeed      uint64
    	ReceiveLinkSpeed       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/syscall/types_windows.go

    	Index           uint32
    	Type            uint32
    	Mtu             uint32
    	Speed           uint32
    	PhysAddrLen     uint32
    	PhysAddr        [MAXLEN_PHYSADDR]byte
    	AdminStatus     uint32
    	OperStatus      uint32
    	LastChange      uint32
    	InOctets        uint32
    	InUcastPkts     uint32
    	InNUcastPkts    uint32
    	InDiscards      uint32
    	InErrors        uint32
    	InUnknownProtos uint32
    	OutOctets       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Index           uint32
    	Type            uint32
    	Mtu             uint32
    	Speed           uint32
    	PhysAddrLen     uint32
    	PhysAddr        [MAXLEN_PHYSADDR]byte
    	AdminStatus     uint32
    	OperStatus      uint32
    	LastChange      uint32
    	InOctets        uint32
    	InUcastPkts     uint32
    	InNUcastPkts    uint32
    	InDiscards      uint32
    	InErrors        uint32
    	InUnknownProtos uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MibIfRow.InUnknownProtos", Field, 0},
    		{"MibIfRow.Index", Field, 0},
    		{"MibIfRow.LastChange", Field, 0},
    		{"MibIfRow.Mtu", Field, 0},
    		{"MibIfRow.Name", Field, 0},
    		{"MibIfRow.OperStatus", Field, 0},
    		{"MibIfRow.OutDiscards", Field, 0},
    		{"MibIfRow.OutErrors", Field, 0},
    		{"MibIfRow.OutNUcastPkts", Field, 0},
    		{"MibIfRow.OutOctets", Field, 0},
    		{"MibIfRow.OutQLen", 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)
  7. api/go1.txt

    pkg syscall (windows-386), type MibIfRow struct, Mtu uint32
    pkg syscall (windows-386), type MibIfRow struct, Name [256]uint16
    pkg syscall (windows-386), type MibIfRow struct, OperStatus uint32
    pkg syscall (windows-386), type MibIfRow struct, OutDiscards uint32
    pkg syscall (windows-386), type MibIfRow struct, OutErrors uint32
    pkg syscall (windows-386), type MibIfRow struct, OutNUcastPkts uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top