

* RAW  		streams driver

%DRIVER

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

%PARAM

NRAW 		5 	# number of minor devices
RAWOPT_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/raw.h"

struct rawd rawd[NRAW];
int rawd_cnt = NRAW;
int rawmsg[NRAW];

/*
 * This value may have to match the value of IPOPT_OUT.
 */
char rawopt_out = RAWOPT_OUT;
