hosts.c

来自「基于nucleus操作系统的GPRS无线数据传输终端全套源文件。包括支持ARM7」· C语言 代码 · 共 51 行

C
51
字号
/**************************************************************************
*                                                                          
*    CopyrIght (c)  1993 - 2001 Accelerated Technology, Inc.               
*                                                                          
* PROPRIETARY RIGHTS of Accelerated Technology are involved in the subject 
* matter of this material.  All manufacturing, reproduction, use and sales 
* rights pertaining to this subject matter are governed by the license     
* agreement.  The recipient of this software implicity accepts the terms   
* of the license.                                                          
*                                                                          
****************************************************************************/
/**************************************************************************
*                                                                          
* FILENAME                                   VERSION                               
*                                                                                  
*  Hosts.c                                     4.4                                 
*                                                                                  
* DESCRIPTION                                                              
*                                                                          
*      This file contains the hostTable structure.                         
*                                                                          
* DATA STRUCTURES                                                          
*                                                                          
*      hostTable[]                                                         
*                                                                          
* FUNCTIONS                                                                
*                                                                          
*      None.                                                               
*                                                                          
* DEPENDENCIES                                                             
*                                                                          
*                                                                          
****************************************************************************/
#include "net/inc/externs.h"
#include "net/inc/mem_defs.h"
#include "net/inc/socketd.h"
#include "net/inc/ip.h"
    

struct host hostTable[] =               
{                                       
    {"GLEN",       198, 100, 100, 10},  
    {"allynon",    206, 202, 34, 80},   
    {"DAVID",      198, 100, 100, 4},   
    {"LAB",        198, 100, 100, 3},   
    {"MODEL",      198, 100, 100, 1},   
    {"\0",         0, 0, 0, 0}          

};

⌨️ 快捷键说明

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