Home | History | Annotate | Download | only in net

Lines Matching refs:domain

212 	const char *name;	/* domain name */
1361 * (i.e., with the succeeding search-domain tacked on).
2145 res_queryN(const char *name, /* domain name */ struct res_target *target,
2252 const char *cp, * const *domain;
2307 * the domain stuff is tried. Will have a better
2312 for (domain = (const char * const *)res->dnsrch;
2313 *domain && !done;
2314 domain++) {
2316 ret = res_querydomainN(name, *domain, target, res);
2322 * If name isn't found in this domain,
2327 * from finding this entry higher in the domain.
2394 * Perform a call on res_query on the concatenation of name and domain,
2395 * removing a trailing dot from name if domain is NULL.
2398 res_querydomainN(const char *name, const char *domain,
2411 name, domain?domain:"<Nil>");
2413 if (domain == NULL) {
2430 d = strlen(domain);
2435 snprintf(nbuf, sizeof(nbuf), "%s.%s", name, domain);