Lines Matching defs:host
62 /* The fixed host name we provide, in order to not leak our real local host
331 * host [in] - The host name.
362 const char *host = ""; /* empty */
367 size_t domoff = hostoff + hostlen; /* This is 0: remember that host and
385 "%c%c" /* host length */
386 "%c%c" /* host allocated space */
387 "%c%c" /* host name offset */
389 "%s" /* host name */
407 host, /* this is empty */
493 char host[HOSTNAME_MAX + 1] = "";
520 /* Get the machine's un-qualified host name as NTLM doesn't like the fully
522 if(Curl_gethostname(host, sizeof(host))) {
527 hostlen = strlen(host);
530 (void)msnprintf(host, sizeof(host), "%s", NTLM_HOSTNAME);
632 "%c%c" /* host length */
633 "%c%c" /* host allocated space */
634 "%c%c" /* host offset */
646 /* host string */
722 /* Make sure that the domain, user and host strings fit in the
725 failf(data, "user + domain + host name too big");
747 unicodecpy(&ntlmbuf[size], host, hostlen / 2);
749 memcpy(&ntlmbuf[size], host, hostlen);