Home | History | Annotate | Download | only in c-ares

Lines Matching refs:hostname

748       printf ("Host Name: %s\n", fi->HostName);
1143 char *hostname = NULL;
1186 /* Derive a default domain search list from the kernel hostname,
1187 * or set it to empty if the hostname isn't helpful.
1194 hostname = malloc(len);
1195 if(!hostname) {
1201 res = gethostname(hostname, len);
1206 p = realloc(hostname, len);
1211 hostname = p;
1221 dot = strchr(hostname, '.');
1263 if(hostname)
1264 free(hostname);