Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gai_strerror (2.63 sec)

  1. src/net/cgo_unix_cgo.go

    func _C_freeaddrinfo(ai *_C_struct_addrinfo) {
    	C.freeaddrinfo(ai)
    }
    
    func _C_gai_strerror(eai _C_int) string {
    	return C.GoString(C.gai_strerror(eai))
    }
    
    func _C_getaddrinfo(hostname, servname *_C_char, hints *_C_struct_addrinfo, res **_C_struct_addrinfo) (int, error) {
    	x, err := C.getaddrinfo(hostname, servname, hints, res)
    	return int(x), err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 17:49:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top