Home | History | Annotate | Download | only in vauth

Lines Matching defs:host

388   const char *host = "";              /* empty */
393 size_t domoff = hostoff + hostlen; /* This is 0: remember that host and
414 "%c%c" /* host length */
415 "%c%c" /* host allocated space */
416 "%c%c" /* host name offset */
418 "%s" /* host name */
436 host, /* this is empty */
524 char host[HOSTNAME_MAX + 1] = "";
548 /* Get the machine's un-qualified host name as NTLM doesn't like the fully
550 if(Curl_gethostname(host, sizeof(host))) {
555 hostlen = strlen(host);
699 "%c%c" /* host length */
700 "%c%c" /* host allocated space */
701 "%c%c" /* host offset */
713 /* host string */
795 /* Make sure that the domain, user and host strings fit in the
798 failf(data, "user + domain + host name too big");
820 unicodecpy(&ntlmbuf[size], host, hostlen / 2);
822 memcpy(&ntlmbuf[size], host, hostlen);
826 /* Convert domain, user, and host to ASCII but leave the rest as-is */