Lines Matching defs:host
44 * service/host@realm (Not currently used)
45 * service/host (Not used by GSS-API)
51 * host [in] - The host name.
57 char *Curl_auth_build_spn(const char *service, const char *host,
63 if(host && realm)
64 spn = aprintf("%s/%s@%s", service, host, realm);
65 else if(host)
66 spn = aprintf("%s/%s", service, host);
74 TCHAR *Curl_auth_build_spn(const char *service, const char *host,
91 utf8_spn = aprintf("%s/%s", service, host);
152 * "sensitive data" can (still) be sent to this host.
160 strcasecompare(data->state.first_host, conn->host.name) &&