Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MibIfRow (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	SecondaryWinsServer IpAddrString
    	LeaseObtained       int64
    	LeaseExpires        int64
    }
    
    const MAXLEN_PHYSADDR = 8
    const MAX_INTERFACE_NAME_LEN = 256
    const MAXLEN_IFDESCR = 256
    
    type MibIfRow struct {
    	Name            [MAX_INTERFACE_NAME_LEN]uint16
    	Index           uint32
    	Type            uint32
    	Mtu             uint32
    	Speed           uint32
    	PhysAddrLen     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)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    func GetIfEntry(pIfRow *MibIfRow) (errcode error) {
    	r0, _, _ := syscall.Syscall(procGetIfEntry.Addr(), 1, uintptr(unsafe.Pointer(pIfRow)), 0, 0)
    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top