Home | History | Annotate | Download | only in vauth

Lines Matching refs:service

40  * service/host@realm (Not currently used)
41 * service/host (Not used by GSS-API)
42 * service@realm (Not used by Windows SSPI)
46 * service [in] - The service type such as http, smtp, pop or imap.
53 char *Curl_auth_build_spn(const char *service, const char *host,
60 spn = aprintf("%s/%s@%s", service, host, realm);
62 spn = aprintf("%s/%s", service, host);
64 spn = aprintf("%s@%s", service, realm);
70 TCHAR *Curl_auth_build_spn(const char *service, const char *host,
86 utf8_spn = aprintf("%s/%s", service, host);