Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IpAdapterInfo (0.14 sec)

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

    	IpMask    IpMaskString
    	Context   uint32
    }
    
    const MAX_ADAPTER_NAME_LENGTH = 256
    const MAX_ADAPTER_DESCRIPTION_LENGTH = 128
    const MAX_ADAPTER_ADDRESS_LENGTH = 8
    
    type IpAdapterInfo struct {
    	Next                *IpAdapterInfo
    	ComboIndex          uint32
    	AdapterName         [MAX_ADAPTER_NAME_LENGTH + 4]byte
    	Description         [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
    	AddressLength       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 GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) {
    	r0, _, _ := syscall.Syscall(procGetAdaptersInfo.Addr(), 2, uintptr(unsafe.Pointer(ai)), uintptr(unsafe.Pointer(ol)), 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