Put the correct tapdev_output() function in the tapdev netif
This commit is contained in:
parent
39b5f9e81f
commit
4a3f6b5e97
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
||||||
*
|
*
|
||||||
* Author: Adam Dunkels <adam@sics.se>
|
* Author: Adam Dunkels <adam@sics.se>
|
||||||
*
|
*
|
||||||
* $Id: contiki-main.c,v 1.11 2007/03/28 20:15:15 adamdunkels Exp $
|
* $Id: contiki-main.c,v 1.12 2007/03/29 22:24:47 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "contiki.h"
|
#include "contiki.h"
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
|
|
||||||
u8_t tapdev_output(void);
|
u8_t tapdev_output(void);
|
||||||
static struct uip_fw_netif tapif =
|
static struct uip_fw_netif tapif =
|
||||||
{UIP_FW_NETIF(0,0,0,0, 0,0,0,0, tapdev_send)};
|
{UIP_FW_NETIF(0,0,0,0, 0,0,0,0, tapdev_output)};
|
||||||
static struct uip_fw_netif meshif =
|
static struct uip_fw_netif meshif =
|
||||||
{UIP_FW_NETIF(172,16,0,0, 255,255,0,0, uip_over_mesh_send)};
|
{UIP_FW_NETIF(172,16,0,0, 255,255,0,0, uip_over_mesh_send)};
|
||||||
/*static struct uip_fw_netif ethernodeif =
|
/*static struct uip_fw_netif ethernodeif =
|
||||||
|
|
Loading…
Add table
Reference in a new issue