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

/* Initialization for the Address Resolution Protocol.
 */

/*
 *------------------------------------------------------------------
 *
 * $Source: /mit/cgw/conf/e19gw/RCS/arpcnf.c,v $
 * $Revision: 1.1 $
 * $Date: 89/03/17 16:55:54 $
 * $State: Exp $
 * $Author: jon $
 * $Locker: jon $
 *
 * $Log:	arpcnf.c,v $
 * Revision 1.1  89/03/17  16:55:54  jon
 * Initial revision
 * 
 * Revision 1.2  88/06/07  15:13:52  jon
 * Add third network with no arp (slip over dh)
 * 
 *------------------------------------------------------------------
 */

#ifndef lint
static char *rcsid_arpcnf_c = "$Header: arpcnf.c,v 1.1 89/03/17 16:55:54 jon Locked $";
#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

arp_desc arp_descriptors[] = {
    { NULL, IP_DEFS_ARPRTE, 100 },
};

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