mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
14 lines
271 B
C
14 lines
271 B
C
#include <stdint.h>
|
|
#include <vtimer.h>
|
|
#include <mutex.h>
|
|
#include "sys/net/sixlowpan/sixlowip.h"
|
|
#include "rpl_dodag.h"
|
|
|
|
void rpl_init();
|
|
void rpl_init_root();
|
|
|
|
void rpl_icmp_handler(uint8_t code);
|
|
void recv_rpl_dio(void);
|
|
void recv_rpl_dao(void);
|
|
void send_DIO(void);
|