/*
 * netinfo.c
 *
 * global network information.
 *
 */

#include "sys/types.h"
#include "sys/param.h"
#include "netinet/in.h"

int	rt_conn[][4] = {
	{ -1, -1, -1, -1, },		/* host 0 */
	{  2, -1, -1, -1, },		/* host 1 */
	{  1,  3, -1, -1, },		/* host 2 */
	{  2,  4,  5,  6, },		/* host 3 */
	{  3,  5,  6, -1, },		/* host 4 */
	{  4,  6,  3, -1, },		/* host 5 */
	{  5, -1,  4,  3, },		/* host 6 */
};

int	_node_number = 2;			/* which host WE are */

u_long	ournet = 0x80360000;
u_long	oursubnet = 0x80367000;
struct	in_addr gateway = 0x80367001;	/* gateway to the world */
struct	in_addr netbroadcast = 0x80367000;
