⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 res_init.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
📖 第 1 页 / 共 2 页
字号:
	}#define	MATCH(line, name) \	(!strncmp(line, name, sizeof(name) - 1) && \	(line[sizeof(name) - 1] == ' ' || \	 line[sizeof(name) - 1] == '\t'))	if ((fp = fopen(_PATH_RESCONF, "r")) != NULL) {	    /* read the config file */	    while (fgets(buf, sizeof(buf), fp) != NULL) {		/* skip comments */		if (*buf == ';' || *buf == '#')			continue;		/* read default domain name */		if (MATCH(buf, "domain")) {		    if (haveenv)	/* skip if have from environ */			    continue;		    cp = buf + sizeof("domain") - 1;		    while (*cp == ' ' || *cp == '\t')			    cp++;		    if ((*cp == '\0') || (*cp == '\n'))			    continue;		    strncpy(_res.defdname, cp, sizeof(_res.defdname) - 1);		    if ((cp = strpbrk(_res.defdname, " \t\n")) != NULL)			    *cp = '\0';		    havesearch = 0;		    continue;		}		/* set search list */		if (MATCH(buf, "search")) {		    if (haveenv)	/* skip if have from environ */			    continue;		    cp = buf + sizeof("search") - 1;		    while (*cp == ' ' || *cp == '\t')			    cp++;		    if ((*cp == '\0') || (*cp == '\n'))			    continue;		    strncpy(_res.defdname, cp, sizeof(_res.defdname) - 1);		    if ((cp = strchr(_res.defdname, '\n')) != NULL)			    *cp = '\0';		    /*		     * Set search list to be blank-separated strings		     * on rest of line.		     */		    cp = _res.defdname;		    pp = _res.dnsrch;		    *pp++ = cp;		    for (n = 0; *cp && pp < _res.dnsrch + MAXDNSRCH; cp++) {			    if (*cp == ' ' || *cp == '\t') {				    *cp = 0;				    n = 1;			    } else if (n) {				    *pp++ = cp;				    n = 0;			    }		    }		    /* null terminate last domain if there are excess */		    while (*cp != '\0' && *cp != ' ' && *cp != '\t')			    cp++;		    *cp = '\0';		    *pp++ = 0;		    havesearch = 1;		    continue;		}		/* read nameservers to query */		if (MATCH(buf, "nameserver") && nserv < MAXNS) {		    struct in_addr a;		    cp = buf + sizeof("nameserver") - 1;		    while (*cp == ' ' || *cp == '\t')			cp++;		    if ((*cp != '\0') && (*cp != '\n') && inet_aton(cp, &a)) {			_res.nsaddr_list[nserv].sin_addr = a;			_res.nsaddr_list[nserv].sin_family = AF_INET;			_res.nsaddr_list[nserv].sin_port =				htons(NAMESERVER_PORT);			nserv++;		    }		    continue;		}#ifdef RESOLVSORT		if (MATCH(buf, "sortlist")) {		    struct in_addr a;		    cp = buf + sizeof("sortlist") - 1;		    while (nsort < MAXRESOLVSORT) {			while (*cp == ' ' || *cp == '\t')			    cp++;			if (*cp == '\0' || *cp == '\n' || *cp == ';')			    break;			net = cp;			while (*cp && !ISSORTMASK(*cp) && *cp != ';' &&			       isascii((int)*cp) && !isspace((int)*cp))				cp++;			n = *cp;			*cp = 0;			if (inet_aton(net, &a)) {			    _res.sort_list[nsort].addr = a;			    if (ISSORTMASK(n)) {				*cp++ = n;				net = cp;				while (*cp && *cp != ';' &&					isascii((int)*cp) && !isspace((int)*cp))				    cp++;				n = *cp;				*cp = 0;				if (inet_aton(net, &a)) {				    _res.sort_list[nsort].mask = a.s_addr;				} else {				    _res.sort_list[nsort].mask = 					net_mask(_res.sort_list[nsort].addr);				}			    } else {				_res.sort_list[nsort].mask = 				    net_mask(_res.sort_list[nsort].addr);			    }			    nsort++;			}			*cp = n;		    }		    continue;		}#endif		if (MATCH(buf, "options")) {		    res_setoptions(buf + sizeof("options") - 1, "conf");		    continue;		}	    }	    if (nserv > 1) 		_res.nscount = nserv;#ifdef RESOLVSORT	    _res.nsort = nsort;#endif	    (void) fclose(fp);	}	if (_res.defdname[0] == 0 &&	    gethostname(buf, sizeof(_res.defdname) - 1) == 0 &&	    (cp = strchr(buf, '.')) != NULL)		strcpy(_res.defdname, cp + 1);	/* find components of local domain that might be searched */	if (havesearch == 0) {		pp = _res.dnsrch;		*pp++ = _res.defdname;		*pp = NULL;#ifndef RFC1535		dots = 0;		for (cp = _res.defdname; *cp; cp++)			dots += (*cp == '.');		cp = _res.defdname;		while (pp < _res.dnsrch + MAXDFLSRCH) {			if (dots < LOCALDOMAINPARTS)				break;			cp = strchr(cp, '.') + 1;    /* we know there is one */			*pp++ = cp;			dots--;		}		*pp = NULL;#ifdef DEBUG		if (_res.options & RES_DEBUG) {			printf(";; res_init()... default dnsrch list:\n");			for (pp = _res.dnsrch; *pp; pp++)				printf(";;\t%s\n", *pp);			printf(";;\t..END..\n");		}#endif#endif /* !RFC1535 */	}	if ((cp = getenv("RES_OPTIONS")) != NULL)		res_setoptions(cp, "env");	_res.options |= RES_INIT;	return (0);}static voidres_setoptions(options, source)	char *options, *source;{	char *cp = options;	int i;#ifdef DEBUG	if (_res.options & RES_DEBUG)		printf(";; res_setoptions(\"%s\", \"%s\")...\n",		       options, source);#endif	while (*cp) {		/* skip leading and inner runs of spaces */		while (*cp == ' ' || *cp == '\t')			cp++;		/* search for and process individual options */		if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {			i = atoi(cp + sizeof("ndots:") - 1);			if (i <= RES_MAXNDOTS)				_res.ndots = i;			else				_res.ndots = RES_MAXNDOTS;#ifdef DEBUG			if (_res.options & RES_DEBUG)				printf(";;\tndots=%d\n", _res.ndots);#endif		} else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {#ifdef DEBUG			if (!(_res.options & RES_DEBUG)) {				printf(";; res_setoptions(\"%s\", \"%s\")..\n",				       options, source);				_res.options |= RES_DEBUG;			}			printf(";;\tdebug\n");#endif		} else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {			_res.options |= RES_USE_INET6;		} else if (!strncmp(cp, "no_tld_query", sizeof("no_tld_query") - 1)) {			_res.options |= RES_NOTLDQUERY;		} else {			/* XXX - print a warning here? */		}		/* skip to next run of spaces */		while (*cp && *cp != ' ' && *cp != '\t')			cp++;	}}#ifdef RESOLVSORT/* XXX - should really support CIDR which means explicit masks always. */static u_int32_tnet_mask(in)		/* XXX - should really use system's version of this */	struct in_addr in;{	register u_int32_t i = ntohl(in.s_addr);	if (IN_CLASSA(i))		return (htonl(IN_CLASSA_NET));	else if (IN_CLASSB(i))		return (htonl(IN_CLASSB_NET));	return (htonl(IN_CLASSC_NET));}#endifu_intres_randomid(){	struct timeval now;	gettimeofday(&now, NULL);	return (0xffff & (now.tv_sec ^ now.tv_usec ^ getpid()));}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -