usrDnsCfg.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usrDnsCfg.c - Domain Name Service setup */
  2. /* Copyright 1992 - 1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,04aug98,spm  written
  7. */
  8. /*
  9. DESCRIPTION
  10. This file is used to configure and initialize the DNS server.
  11. It contains the initialization routine for the INCLUDE_DNS_RESOLVER
  12. component and is included by the configuration tool.
  13. NOMANUAL
  14. */
  15. IMPORT int dnsDebug (void);
  16. LOCAL STATUS usrDnsInit 
  17.     (
  18.     BOOL debugFlag
  19.     )
  20.     {
  21.     STATUS  result;
  22.     if (debugFlag)
  23.         result = resolvInit (RESOLVER_DOMAIN_SERVER, RESOLVER_DOMAIN, 
  24.                              dnsDebug);
  25.     else
  26.         result = resolvInit (RESOLVER_DOMAIN_SERVER, RESOLVER_DOMAIN, NULL);
  27.     return (result);
  28.     }