
* UDP  		streams driver

%DRIVER

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

%PARAM

NUDP 		128 	# number of minor devices
UDPCKSUM 	1	# set non-zero if udp checksumming is desired
UDPOPT_OUT 	0	# in or out options 

%CONFIG

#include "tcp/sys/socket.h"
#include "tcp/sys/inet.h"
#include "tcp/sys/arp.h"
#include "tcp/sys/if.h"
#include "tcp/sys/in.h"
#include "tcp/sys/ip.h"
#include "tcp/sys/route.h"
#include "tcp/sys/tcp.h"
#include "tcp/sys/udp.h"

struct udpd 	udpd[NUDP];

int		udpd_cnt = NUDP;
int 		udpcksum = UDPCKSUM;

/* This value may have to match the value of IPOPT_OUT.  */
char 		udpopt_out = UDPOPT_OUT;
