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

/* Initialization for the Address Resolution Protocol.
 */

/*
 *------------------------------------------------------------------
 *
 * $Source: /mit/cgw/conf/sewage/RCS/arpcnf-ch.c,v $
 * $Revision: 1.3 $
 * $Date: 90/02/06 18:28:29 $
 * $State: Exp $
 * $Author: jon $
 * $Locker: jon $
 *
 * $Log:	arpcnf-ch.c,v $
 * Revision 1.3  90/02/06  18:28:29  jon
 * add 2nd ethere
 * 
 * Revision 1.2  88/03/25  14:54:34  jon
 * Enable chaos arp.
 * 
 * 
 *------------------------------------------------------------------
 */

#ifndef lint
static char *rcsid_arpcnf_c = "$Header: /mit/cgw/conf/sewage/RCS/arpcnf-ch.c,v 1.3 90/02/06 18:28:29 jon Exp Locker: jon $";
#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, 100 },
    { NULL, CH_DEFS, 75 },
    { &arp_descriptors[3], IP_DEFS, 100 },
    { NULL, CH_DEFS, 75 },
};

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