Fix compilation of multicast engines smrf and esmrf

This commit is contained in:
Simon Duquennoy 2017-12-10 12:13:47 -08:00
parent 7adfb92b63
commit 5f4ad6d657
2 changed files with 12 additions and 0 deletions

View File

@ -50,6 +50,12 @@
#include "net/ipv6/uip.h"
#include "net/netstack.h"
#include "net/packetbuf.h"
#if UIP_CONF_IPV6_RPL_LITE
#include "net/routing/rpl-lite/rpl.h"
#endif /* UIP_CONF_IPV6_RPL_LITE */
#if UIP_CONF_IPV6_RPL_CLASSIC
#include "net/routing/rpl-classic/rpl.h"
#endif /* UIP_CONF_IPV6_RPL_CLASSIC */
#include <string.h>
extern uint16_t uip_slen;

View File

@ -50,6 +50,12 @@
#include "net/routing/routing.h"
#include "net/netstack.h"
#include "net/packetbuf.h"
#if UIP_CONF_IPV6_RPL_LITE
#include "net/routing/rpl-lite/rpl.h"
#endif /* UIP_CONF_IPV6_RPL_LITE */
#if UIP_CONF_IPV6_RPL_CLASSIC
#include "net/routing/rpl-classic/rpl.h"
#endif /* UIP_CONF_IPV6_RPL_CLASSIC */
#include <string.h>
#define DEBUG DEBUG_NONE