- Removed unnecessary PROCESS_POLLHANDLER(pollhandler()) as pollhandler is explicitly called.

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

- Unified general coding/formatting style.
This commit is contained in:
oliverschmidt 2007-03-27 20:41:10 +00:00
parent 52da435b27
commit 1ca96b614a
6 changed files with 55 additions and 92 deletions

View file

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