The structure of a network driver in Contiki.
More...
#include <os/net/netstack.h>
|
|
void(* | init )(void) |
| | Initialize the network driver.
|
| |
|
void(* | input )(void) |
| | Callback for getting notified of incoming packet in packetbuf.
|
| |
|
uint8_t(* | output )(const linkaddr_t *localdest) |
| | Output funtion, sends from uipbuf.
|
| |
The structure of a network driver in Contiki.
Definition at line 115 of file netstack.h.