getnet.c,v

来自「TCP-IP红宝书源代码」· C,V 代码 · 共 58 行

C,V
58
字号
head	1.1;
access;
symbols;
locks
	dls:1.1; strict;
comment	@ * @;


1.1
date	97.09.21.19.27.59;	author dls;	state Dist;
branches;
next	;


desc
@@


1.1
log
@pre-3e code
@
text
@/* getnet.c - getnet, getinet */

#include <conf.h>
#include <kernel.h>
#include <network.h>

/*------------------------------------------------------------------------
 *  getnet  -  obtain the network portion of this system's IP address
 *------------------------------------------------------------------------
 */
IPaddr
getnet()
{
	return getiaddr(NI_PRIMARY);
}

/*------------------------------------------------------------------------
 *  getinet  -  obtain the network portion of this interface's IP address
 *------------------------------------------------------------------------
 */
IPaddr
getinet(inum)
int	inum;
{
	struct netif	*pif;

	if (inum < 0 || inum >= Net.nif)
		return SYSERR;
	pif = &nif[inum];
	if (!pif->ni_ivalid && getiaddr(inum) == SYSERR)
		return SYSERR;
	return pif->ni_net;
}
@

⌨️ 快捷键说明

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