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

📄 usrdnscfg.c

📁 IXP425的BSP代码
💻 C
字号:
/* usrDnsCfg.c - Domain Name Service setup *//* Copyright 1992 - 1998 Wind River Systems, Inc. *//*modification history--------------------01a,04aug98,spm  written*//*DESCRIPTIONThis file is used to configure and initialize the DNS server.It contains the initialization routine for the INCLUDE_DNS_RESOLVERcomponent and is included by the configuration tool.NOMANUAL*/IMPORT int dnsDebug (void);LOCAL STATUS usrDnsInit     (    BOOL debugFlag    )    {    STATUS 	result;    if (debugFlag)        result = resolvInit (RESOLVER_DOMAIN_SERVER, RESOLVER_DOMAIN,                              dnsDebug);    else        result = resolvInit (RESOLVER_DOMAIN_SERVER, RESOLVER_DOMAIN, NULL);    return (result);    }

⌨️ 快捷键说明

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