- Moved all ARP handling to service wrapper (and narrowed interface to low level code).

- Adjusted packet forwarding to moving all ARP handling to service wrapper.

- Unified general coding/formatting style.
This commit is contained in:
oliverschmidt 2007-03-27 21:47:17 +00:00
parent 35051ffbd3
commit 342e720cfd
7 changed files with 148 additions and 114 deletions

View file

@ -31,17 +31,14 @@
*
* This file is part of the uIP TCP/IP stack.
*
* $Id: tapdev.h,v 1.1 2006/06/17 22:41:36 adamdunkels Exp $
*
* $Id: tapdev.h,v 1.2 2007/03/27 21:47:18 oliverschmidt Exp $
*/
#ifndef __TAPDEV_H__
#define __TAPDEV_H__
#include "contiki.h"
void tapdev_init(void);
u16_t tapdev_poll(void);
u8_t tapdev_send(void);
void tapdev_send_raw(void);
void tapdev_send(void);
#endif /* __TAPDEV_H__ */