From 63a6493e5cf9f4784390711a7e465c0fc514b58c Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Fri, 10 Aug 2007 14:59:59 +0000 Subject: [PATCH] Made tapdev and wpcap driver similiar making up a "driver template". --- cpu/native/net/tapdev-drv.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpu/native/net/tapdev-drv.c b/cpu/native/net/tapdev-drv.c index 1f1aa0aba..25793cb32 100644 --- a/cpu/native/net/tapdev-drv.c +++ b/cpu/native/net/tapdev-drv.c @@ -28,13 +28,15 @@ * * This file is part of the Contiki operating system. * - * @(#)$Id: tapdev-drv.c,v 1.3 2007/05/26 22:51:38 oliverschmidt Exp $ + * @(#)$Id: tapdev-drv.c,v 1.4 2007/08/10 14:59:59 oliverschmidt Exp $ */ #include "contiki-net.h" #include "tapdev.h" #include "net/uip-neighbor.h" +#include "tapdev-drv.h" + #define BUF ((struct uip_eth_hdr *)&uip_buf[0]) PROCESS(tapdev_process, "TAP driver");