Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Protoent (0.1 sec)

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

    }
    
    func GetProtoByName(name string) (p *Protoent, err error) {
    	var _p0 *byte
    	_p0, err = syscall.BytePtrFromString(name)
    	if err != nil {
    		return
    	}
    	return _GetProtoByName(_p0)
    }
    
    func _GetProtoByName(name *byte) (p *Protoent, err error) {
    	r0, _, e1 := syscall.Syscall(procgetprotobyname.Addr(), 1, uintptr(unsafe.Pointer(name)), 0, 0)
    	p = (*Protoent)(unsafe.Pointer(r0))
    	if p == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_TYPE_REMOTE  = 0x8000
    	FILE_TYPE_UNKNOWN = 0x0000
    )
    
    type Hostent struct {
    	Name     *byte
    	Aliases  **byte
    	AddrType uint16
    	Length   uint16
    	AddrList **byte
    }
    
    type Protoent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   uint16
    }
    
    const (
    	DNS_TYPE_A       = 0x0001
    	DNS_TYPE_NS      = 0x0002
    	DNS_TYPE_MD      = 0x0003
    	DNS_TYPE_MF      = 0x0004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    prvcy.page
    
    // Protocol Labs : https://protocol.ai/
    // Submitted by Michael Burns <******@****.***>
    *.dweb.link
    
    // Protonet GmbH : http://protonet.io
    // Submitted by Martin Meier <admin@protonet.io>
    protonet.io
    
    // Publication Presse Communication SARL : https://ppcom.fr
    // Submitted by Yaacov Akiba Slama <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top