Home | History | Annotate | Download | only in vauth

Lines Matching refs:domain

357  * userp   [in]     - The user name in the format User or Domain\User.
383 (16) Supplied Domain security buffer (*)
394 const char *domain = ""; /* empty */
399 domain are empty */
417 "%c%c" /* domain length */
418 "%c%c" /* domain allocated space */
419 "%c%c" /* domain name offset */
426 "%s", /* domain string */
444 domain /* this is empty */);
484 * userp [in] - The user name in the format User or Domain\User.
533 const char *domain = "";
546 domain = userp;
547 domlen = (user - domain);
556 qualified domain name */
579 result = Curl_ntlm_core_mk_ntlmv2_hash(user, userlen, domain, domlen,
698 "%c%c" /* domain length */
699 "%c%c" /* domain allocated space */
700 "%c%c" /* domain name offset */
720 /* domain string */
807 /* Make sure that the domain, user and host strings fit in the
810 failf(data, "user + domain + host name too big");
816 unicodecpy(&ntlmbuf[size], domain, domlen / 2);
818 memcpy(&ntlmbuf[size], domain, domlen);
838 /* Convert domain, user, and host to ASCII but leave the rest as-is */