/* Copyright 1985 by the Massachusetts Institute of Technology */

/* Initialization for the Address Resolution Protocol.  Version for IP
 * and Chaos support in spine gateways.
 */

/*
 *------------------------------------------------------------------
 *
 * $Source: /achilles/u1/jis/gw/cgw/conf/spine/RCS/arpcnf-ch.c,v $
 * $Revision: 1.2 $
 * $Date: 87/08/04 15:53:20 $
 * $State: Exp $
 * $Author: jon $
 * $Locker:  $
 *
 * $Log:	arpcnf-ch.c,v $
 * Revision 1.2  87/08/04  15:53:20  jon
 * Adds arp route hack.
 * 
 * 
 * 
 *------------------------------------------------------------------
 */

#ifndef lint
static char *rcsid_aprcnf_ch_c = "$Header: arpcnf-ch.c,v 1.2 87/08/04 15:53:20 jon Exp $";
#endif	lint

#include	<types.h>
#include	<sys.h>
#include	<gw/src/const.h>
#include	<gw/src/param.h>
#include	<gw/src/defs.h>
#include	<gw/src/net.h>
#include	<gw/arp/arp.h>
#include	<gw/arp/arpcnf.h>

#include	"netcnf.h"

INCLUDE_IP
INCLUDE_CH

arp_desc arp_descriptors[] = {
    { &arp_descriptors[1], IP_DEFS_ARPRTE, 100 },
    { NULL, CH_DEFS, 75 },
};

/* ARP descriptors indexed by net number */
arp_desc *arp_ntbl[NNETS] = {
    NULL,
    &arp_descriptors[0],
};
