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

/* Initialization for the Address Resolution Protocol.
 */

/*
 *------------------------------------------------------------------
 *
 * $Source: /afs/net.mit.edu/project/cgw/conf/fmgc/RCS/arpcnf.c,v $
 * $Revision: 1.3 $
 * $Date: 90/09/29 20:58:58 $
 * $State: Exp $
 * $Author: jon $
 * $Locker:  $
 *
 * $Log:	arpcnf.c,v $
 * Revision 1.3  90/09/29  20:58:58  jon
 * *** empty log message ***
 * 
 * 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: /afs/net.mit.edu/project/cgw/conf/fmgc/RCS/arpcnf.c,v 1.3 90/09/29 20:58:58 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

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,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
};
