Lines Matching defs:service
44 * service/host@realm (Not currently used)
45 * service/host (Not used by GSS-API)
46 * service@realm (Not used by Windows SSPI)
50 * service [in] - The service type such as http, smtp, pop or imap.
57 char *Curl_auth_build_spn(const char *service, const char *host,
64 spn = aprintf("%s/%s@%s", service, host, realm);
66 spn = aprintf("%s/%s", service, host);
68 spn = aprintf("%s@%s", service, realm);
74 TCHAR *Curl_auth_build_spn(const char *service, const char *host,
91 utf8_spn = aprintf("%s/%s", service, host);