Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for IpAdapterInfo (0.23 sec)

  1. src/syscall/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: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IpAdapterInfo.GatewayList", Field, 0},
    		{"IpAdapterInfo.HaveWins", Field, 0},
    		{"IpAdapterInfo.Index", Field, 0},
    		{"IpAdapterInfo.IpAddressList", Field, 0},
    		{"IpAdapterInfo.LeaseExpires", Field, 0},
    		{"IpAdapterInfo.LeaseObtained", Field, 0},
    		{"IpAdapterInfo.Next", Field, 0},
    		{"IpAdapterInfo.PrimaryWinsServer", Field, 0},
    		{"IpAdapterInfo.SecondaryWinsServer", Field, 0},
    		{"IpAdapterInfo.Type", 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)
  3. 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)
  4. src/syscall/zsyscall_windows.go

    	return
    }
    
    func DnsRecordListFree(rl *DNSRecord, freetype uint32) {
    	Syscall(procDnsRecordListFree.Addr(), 2, uintptr(unsafe.Pointer(rl)), uintptr(freetype), 0)
    	return
    }
    
    func GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) {
    	r0, _, _ := Syscall(procGetAdaptersInfo.Addr(), 2, uintptr(unsafe.Pointer(ai)), uintptr(unsafe.Pointer(ol)), 0)
    	if r0 != 0 {
    		errcode = Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (windows-386), type IpAdapterInfo struct, LeaseExpires int64
    pkg syscall (windows-386), type IpAdapterInfo struct, LeaseObtained int64
    pkg syscall (windows-386), type IpAdapterInfo struct, Next *IpAdapterInfo
    pkg syscall (windows-386), type IpAdapterInfo struct, PrimaryWinsServer IpAddrString
    pkg syscall (windows-386), type IpAdapterInfo struct, SecondaryWinsServer IpAddrString
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    //sys	FreeAddrInfoW(addrinfo *AddrinfoW) = ws2_32.FreeAddrInfoW
    //sys	GetIfEntry(pIfRow *MibIfRow) (errcode error) = iphlpapi.GetIfEntry
    //sys	GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) = iphlpapi.GetAdaptersInfo
    //sys	SetFileCompletionNotificationModes(handle Handle, flags uint8) (err error) = kernel32.SetFileCompletionNotificationModes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	FreeAddrInfoW(addrinfo *AddrinfoW) = ws2_32.FreeAddrInfoW
    //sys	GetIfEntry(pIfRow *MibIfRow) (errcode error) = iphlpapi.GetIfEntry
    //sys	GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) = iphlpapi.GetAdaptersInfo
    //sys	SetFileCompletionNotificationModes(handle Handle, flags uint8) (err error) = kernel32.SetFileCompletionNotificationModes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. 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