Lines Matching refs:host
40 #define IDN2_LOOKUP(name, host, flags) \ argument
41 idn2_lookup_u8((const uint8_t *)name, (uint8_t **)host, flags)
43 #define IDN2_LOOKUP(name, host, flags) \ argument
44 idn2_lookup_ul((const char *)name, (char **)host, flags)
351 void Curl_free_idnconverted_hostname(struct hostname *host) in Curl_free_idnconverted_hostname() argument
353 Curl_safefree(host->encalloc); in Curl_free_idnconverted_hostname()
361 CURLcode Curl_idnconvert_hostname(struct hostname *host) in Curl_idnconvert_hostname() argument
364 host->dispname = host->name; in Curl_idnconvert_hostname()
368 if(!Curl_is_ASCII_name(host->name)) { in Curl_idnconvert_hostname()
370 CURLcode result = Curl_idn_decode(host->name, &decoded); in Curl_idnconvert_hostname()
374 host->name = host->encalloc = decoded; in Curl_idnconvert_hostname()