Lines Matching refs:domain
77 * userp [in] - The user name in the format User or Domain\User.
252 * This is used to populate the domain in a SSPI identity structure
254 * domain if it is not already explicitly set.
266 xcharp_u domain, dup_domain;
268 /* If domain is blank or unset, check challenge message for realm */
269 if(!identity->Domain || !identity->DomainLength) {
282 /* Setup identity's domain and length */
283 domain.tchar_ptr = Curl_convert_UTF8_to_tchar((char *) content);
284 if(!domain.tchar_ptr)
287 dup_domain.tchar_ptr = _tcsdup(domain.tchar_ptr);
289 Curl_unicodefree(domain.tchar_ptr);
293 free(identity->Domain);
294 identity->Domain = dup_domain.tbyte_ptr;
298 Curl_unicodefree(domain.tchar_ptr);
393 * userp [in] - The user name in the format User or Domain\User.
507 /* Populate our identity domain */