
* ARP		Address Resolution Protocol Driver

%DRIVER

Type:		stream
Prefix:		arp
Funcs:		init
Major:		- 
* Controller:
* Physical:
* Logical:
* LineDis:
* Options:

%PARAM

NARP		11
NARPB		(NARP-1)*2
NARPTAB		150
PHYAD_SIZE	6

%CONFIG

#include "tcp/sys/socket.h"
#include "tcp/sys/inet.h"
#include "tcp/sys/arp.h"

struct arp 	arp[NARP];
struct arpb 	arpb[NARPB];
struct arptab 	arptab[NARPTAB];
unsigned char 	Bcastnid[PHYAD_SIZE] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};

int arp_cnt 	= NARP;
int arpb_cnt 	= NARPB;
int arptab_cnt 	= NARPTAB;
