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

📄 dnsaddserver.c

📁 lwIP-Softools-11Jul2002-alpha
💻 C
字号:
/* * DNS client subsystem. * * (C) 2002 Compendium Technologies, Inc. * (C) 2002 Softools, Inc. * All rights reserved. * * This software is the proprietary information of Compendium Technologies, Inc. * and Softools, Inc. Use is subject to license terms. */#include "dns.h"/** * Add a name server. The server is an ip address which is assumed to be in * network format (no byte swapping required to use on the network). */int dnsAddServer(struct ip_addr *nameserver){    if (numNameServers == MAX_NAMESERVERS)    {        return DNS_MAX;    }    else    {        nameservers[numNameServers++] = *nameserver;        return DNS_OK;    }}

⌨️ 快捷键说明

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