usrdnscfg.c

来自「IXP425的BSP代码」· C语言 代码 · 共 38 行

C
38
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?