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

/* Initialization for the Address Resolution Protocol.
 */


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

