77#include "lib/random.h"
81#define LOG_MODULE "IPv6 NDP"
82#define LOG_LEVEL LOG_LEVEL_IPV6
90#define UIP_ND6_RS_BUF ((uip_nd6_rs *)UIP_ICMP_PAYLOAD)
91#define UIP_ND6_RA_BUF ((uip_nd6_ra *)UIP_ICMP_PAYLOAD)
92#define UIP_ND6_NS_BUF ((uip_nd6_ns *)UIP_ICMP_PAYLOAD)
93#define UIP_ND6_NA_BUF ((uip_nd6_na *)UIP_ICMP_PAYLOAD)
96#define ND6_OPT(opt) ((unsigned char *)(UIP_ICMP_PAYLOAD + (opt)))
97#define ND6_OPT_HDR_BUF(opt) ((uip_nd6_opt_hdr *)ND6_OPT(opt))
98#define ND6_OPT_PREFIX_BUF(opt) ((uip_nd6_opt_prefix_info *)ND6_OPT(opt))
99#define ND6_OPT_MTU_BUF(opt) ((uip_nd6_opt_mtu *)ND6_OPT(opt))
100#define ND6_OPT_RDNSS_BUF(opt) ((uip_nd6_opt_dns *)ND6_OPT(opt))
103#if UIP_ND6_SEND_NS || UIP_ND6_SEND_NA || UIP_ND6_SEND_RA || !UIP_CONF_ROUTER
104static uint16_t nd6_opt_offset;
110#if UIP_ND6_SEND_NS || UIP_ND6_SEND_RA || !UIP_CONF_ROUTER
118#if (!UIP_CONF_ROUTER || UIP_ND6_SEND_RA)
122#if UIP_ND6_SEND_NA || UIP_ND6_SEND_RA || !UIP_CONF_ROUTER
139create_llao(uint8_t *llao, uint8_t type)
141 llao[UIP_ND6_OPT_TYPE_OFFSET] = type;
176 LOG_ERR(
"Insufficient data for reading ND6 NS header fields");
182 LOG_INFO(
"Received NS from ");
186 LOG_INFO_(
" with target address ");
187 LOG_INFO_6ADDR((uip_ipaddr_t *)(&UIP_ND6_NS_BUF->tgtipaddr));
194 LOG_ERR(
"Discarding invalid NS\n");
200 nd6_opt_offset = UIP_ND6_NS_LEN;
201 while(uip_l3_icmp_hdr_len + nd6_opt_offset + UIP_ND6_OPT_HDR_LEN <
uip_len) {
202 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
203 LOG_ERR(
"Discarding invalid NS\n");
207 switch(ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
208 case UIP_ND6_OPT_SLLAO:
209 if(uip_l3_icmp_hdr_len + nd6_opt_offset +
211 LOG_ERR(
"Insufficient data for NS SLLAO option\n");
218 LOG_ERR(
"Discarding invalid NS\n");
221 uip_lladdr_t lladdr_aligned;
226 0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
235 (
const uip_lladdr_t *)&lladdr_aligned)
240 nbr->state = NBR_STALE;
243 nbr->state = NBR_STALE;
250 LOG_WARN(
"ND option not supported in NS");
253 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
256 addr = uip_ds6_addr_lookup(&UIP_ND6_NS_BUF->tgtipaddr);
260#if UIP_ND6_DEF_MAXDADNS > 0
262 LOG_ERR(
"Discarding invalid NS\n");
269 flags = UIP_ND6_NA_FLAG_OVERRIDE;
281 if(uip_ds6_is_my_addr(&
UIP_IP_BUF->srcipaddr)) {
288 LOG_ERR(
"Discarding invalid NS\n");
296 flags = UIP_ND6_NA_FLAG_SOLICITED | UIP_ND6_NA_FLAG_OVERRIDE;
304 flags = UIP_ND6_NA_FLAG_SOLICITED | UIP_ND6_NA_FLAG_OVERRIDE;
307 LOG_ERR(
"Discarding invalid NS\n");
317 flags = flags | UIP_ND6_NA_FLAG_ROUTER;
330 UIP_ND6_NA_BUF->flagsreserved = flags;
331 memcpy(&UIP_ND6_NA_BUF->tgtipaddr, &
addr->ipaddr,
sizeof(uip_ipaddr_t));
333 create_llao(&
uip_buf[uip_l3_icmp_hdr_len + UIP_ND6_NA_LEN],
342 LOG_INFO(
"Sending NA to ");
346 LOG_INFO_(
" with target address ");
347 LOG_INFO_6ADDR(&UIP_ND6_NA_BUF->tgtipaddr);
377 UIP_ND6_NS_BUF->reserved = 0;
383 if(!(uip_ds6_is_my_addr(tgt))) {
390 LOG_ERR(
"Dropping NS due to no suitable source address\n");
396 create_llao(&
uip_buf[uip_l3_icmp_hdr_len + UIP_ND6_NS_LEN],
403 UIP_IP_BUF->len[1] = UIP_ICMPH_LEN + UIP_ND6_NS_LEN;
404 uip_len = UIP_IPH_LEN + UIP_ICMPH_LEN + UIP_ND6_NS_LEN;
411 LOG_INFO(
"Sending NS to ");
415 LOG_INFO_(
" with target address ");
446 uint8_t is_solicited;
448 uip_lladdr_t lladdr_aligned;
450 LOG_INFO(
"Received NA from ");
454 LOG_INFO_(
" with target address ");
455 LOG_INFO_6ADDR((uip_ipaddr_t *)(&UIP_ND6_NA_BUF->tgtipaddr));
464 is_router = ((UIP_ND6_NA_BUF->flagsreserved & UIP_ND6_NA_FLAG_ROUTER));
466 ((UIP_ND6_NA_BUF->flagsreserved & UIP_ND6_NA_FLAG_SOLICITED));
468 ((UIP_ND6_NA_BUF->flagsreserved & UIP_ND6_NA_FLAG_OVERRIDE));
474 LOG_ERR(
"Discarding invalid NA\n");
479 nd6_opt_offset = UIP_ND6_NA_LEN;
481 while(uip_l3_icmp_hdr_len + nd6_opt_offset <
uip_len) {
482 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
483 LOG_ERR(
"Discarding invalid NA\n");
487 switch(ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
488 case UIP_ND6_OPT_TLLAO:
489 nd6_opt_llao = (uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset);
492 LOG_WARN(
"ND option not supported in NA\n");
495 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
497 addr = uip_ds6_addr_lookup(&UIP_ND6_NA_BUF->tgtipaddr);
500#if UIP_ND6_DEF_MAXDADNS > 0
505 LOG_ERR(
"Discarding invalid NA\n");
508 const uip_lladdr_t *lladdr;
527 (
const uip_lladdr_t *)&lladdr_aligned) < 0) {
537 nbr->state = NBR_STALE;
539 nbr->isrouter = is_router;
541 if(!is_override && is_llchange) {
542 if(
nbr->state == NBR_REACHABLE) {
543 nbr->state = NBR_STALE;
551 if(is_override || !is_llchange ||
nd6_opt_llao == NULL) {
555 (
const uip_lladdr_t *)&lladdr_aligned)
567 if(
nbr->isrouter && !is_router) {
570 uip_ds6_defrt_rm(
defrt);
573 nbr->isrouter = is_router;
576#if UIP_CONF_IPV6_QUEUE_PKT
578 if(uip_packetqueue_buflen(&
nbr->packethandle) != 0) {
579 uip_len = uip_packetqueue_buflen(&
nbr->packethandle);
581 uip_packetqueue_free(&
nbr->packethandle);
600 LOG_INFO(
"Received RS from ");
613 LOG_ERR(
"Discarding invalid RS\n");
619 nd6_opt_offset = UIP_ND6_RS_LEN;
622 while(uip_l3_icmp_hdr_len + nd6_opt_offset <
uip_len) {
623 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
624 LOG_ERR(
"Discarding invalid RS\n");
628 switch(ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
629 case UIP_ND6_OPT_SLLAO:
630 nd6_opt_llao = (uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset);
633 LOG_WARN(
"ND option not supported in RS\n");
636 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
641 LOG_ERR(
"Discarding invalid RS\n");
644 uip_lladdr_t lladdr_aligned;
649 0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
662 0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
666 nbr->reachable = nbr_data.reachable;
667 nbr->sendns = nbr_data.sendns;
668 nbr->nscount = nbr_data.nscount;
676 uip_ds6_send_ra_sollicited();
684uip_nd6_ra_output(
const uip_ipaddr_t *dest)
704 UIP_ND6_RA_BUF->cur_ttl =
uip_ds6_if.cur_hop_limit;
706 UIP_ND6_RA_BUF->flags_reserved =
707 (UIP_ND6_M_FLAG << 7) | (UIP_ND6_O_FLAG << 6);
709 UIP_ND6_RA_BUF->router_lifetime =
uip_htons(UIP_ND6_ROUTER_LIFETIME);
710 UIP_ND6_RA_BUF->reachable_time = 0;
711 UIP_ND6_RA_BUF->retrans_timer = 0;
713 uip_len = UIP_IPH_LEN + UIP_ICMPH_LEN + UIP_ND6_RA_LEN;
714 nd6_opt_offset = UIP_ND6_RA_LEN;
719 if((prefix->isused) && (prefix->advertise)) {
720 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->type = UIP_ND6_OPT_PREFIX_INFO;
721 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->len = UIP_ND6_OPT_PREFIX_INFO_LEN / 8;
722 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->preflen = prefix->length;
723 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->flagsreserved1 = prefix->l_a_reserved;
724 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->validlt = uip_htonl(prefix->vlifetime);
725 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->preferredlt = uip_htonl(prefix->plifetime);
726 ND6_OPT_PREFIX_BUF(nd6_opt_offset)->reserved2 = 0;
727 uip_ipaddr_copy(&(ND6_OPT_PREFIX_BUF(nd6_opt_offset)->prefix), &(prefix->ipaddr));
728 nd6_opt_offset += UIP_ND6_OPT_PREFIX_INFO_LEN;
729 uip_len += UIP_ND6_OPT_PREFIX_INFO_LEN;
734 create_llao((uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset), UIP_ND6_OPT_SLLAO);
740 ND6_OPT_MTU_BUF(nd6_opt_offset)->type = UIP_ND6_OPT_MTU;
741 ND6_OPT_MTU_BUF(nd6_opt_offset)->len = UIP_ND6_OPT_MTU_LEN >> 3;
742 ND6_OPT_MTU_BUF(nd6_opt_offset)->reserved = 0;
743 ND6_OPT_MTU_BUF(nd6_opt_offset)->mtu = uip_htonl(1500);
745 uip_len += UIP_ND6_OPT_MTU_LEN;
746 nd6_opt_offset += UIP_ND6_OPT_MTU_LEN;
751 uip_ipaddr_t *ip = &ND6_OPT_RDNSS_BUF(nd6_opt_offset)->ip;
752 uip_ipaddr_t *dns = NULL;
753 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->type = UIP_ND6_OPT_RDNSS;
754 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->reserved = 0;
757 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->lifetime -=
clock_seconds();
763 ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len = UIP_ND6_OPT_RDNSS_LEN + (i << 1);
764 LOG_INFO(
"%d nameservers reported\n", i);
765 uip_len += ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len << 3;
766 nd6_opt_offset += ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len << 3;
777 LOG_INFO(
"Sending RA to ");
803 UIP_IP_BUF->len[1] = UIP_ICMPH_LEN + UIP_ND6_RS_LEN;
804 uip_len = uip_l3_icmp_hdr_len + UIP_ND6_RS_LEN;
809 create_llao(&
uip_buf[uip_l3_icmp_hdr_len + UIP_ND6_RS_LEN],
817 LOG_INFO(
"Sending RS to ");
837 uip_lladdr_t lladdr_aligned;
839 LOG_INFO(
"Received RA from ");
849 LOG_ERR(
"Discarding invalid RA");
853 if(UIP_ND6_RA_BUF->cur_ttl != 0) {
854 uip_ds6_if.cur_hop_limit = UIP_ND6_RA_BUF->cur_ttl;
855 LOG_INFO(
"uip_ds6_if.cur_hop_limit %u\n",
uip_ds6_if.cur_hop_limit);
858 if(UIP_ND6_RA_BUF->reachable_time != 0) {
860 uip_ntohl(UIP_ND6_RA_BUF->reachable_time)) {
861 uip_ds6_if.base_reachable_time = uip_ntohl(UIP_ND6_RA_BUF->reachable_time);
865 if(UIP_ND6_RA_BUF->retrans_timer != 0) {
866 uip_ds6_if.retrans_timer = uip_ntohl(UIP_ND6_RA_BUF->retrans_timer);
870 nd6_opt_offset = UIP_ND6_RA_LEN;
871 while(uip_l3_icmp_hdr_len + nd6_opt_offset <
uip_len) {
872 if(ND6_OPT_HDR_BUF(nd6_opt_offset)->len == 0) {
873 LOG_ERR(
"Discarding invalid RA");
876 switch(ND6_OPT_HDR_BUF(nd6_opt_offset)->type) {
877 case UIP_ND6_OPT_SLLAO:
878 LOG_DBG(
"Processing SLLAO option in RA\n");
879 nd6_opt_llao = (uint8_t *)ND6_OPT_HDR_BUF(nd6_opt_offset);
887 1, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
894 nbr->state = NBR_STALE;
900 (
const uip_lladdr_t *)&lladdr_aligned) < 0) {
904 nbr->state = NBR_STALE;
909 case UIP_ND6_OPT_MTU:
910 LOG_DBG(
"Processing MTU option in RA\n");
914 case UIP_ND6_OPT_PREFIX_INFO:
915 LOG_DBG(
"Processing PREFIX option in RA\n");
940 uip_ds6_prefix_rm(prefix);
943 prefix->isinfinite = 1;
946 LOG_DBG(
"Updating timer of prefix ");
947 LOG_DBG_6ADDR(&prefix->ipaddr);
951 prefix->isinfinite = 0;
965 if((
addr != NULL) && (
addr->type == ADDR_AUTOCONF)) {
971 LOG_DBG(
"Updating timer of address ");
972 LOG_DBG_6ADDR(&
addr->ipaddr);
973 LOG_DBG_(
" new value %lu\n",
979 LOG_DBG(
"Updating timer of address ");
980 LOG_DBG_6ADDR(&
addr->ipaddr);
981 LOG_DBG_(
" new value %lu\n", (
unsigned long)(2 * 60 * 60));
983 addr->isinfinite = 0;
985 addr->isinfinite = 1;
1001 case UIP_ND6_OPT_RDNSS:
1002 LOG_DBG(
"Processing RDNSS option\n");
1003 uint8_t naddr = (ND6_OPT_RDNSS_BUF(nd6_opt_offset)->len - 1) / 2;
1004 uip_ipaddr_t *ip = (uip_ipaddr_t *)(&ND6_OPT_RDNSS_BUF(nd6_opt_offset)->ip);
1005 LOG_DBG(
"got %d nameservers\n", naddr);
1006 while(naddr-- > 0) {
1007 LOG_DBG(
"nameserver: ");
1009 LOG_DBG_(
" lifetime: %" PRIx32
"\n", uip_ntohl(ND6_OPT_RDNSS_BUF(nd6_opt_offset)->lifetime));
1016 LOG_ERR(
"ND option not supported in RA\n");
1019 nd6_opt_offset += (ND6_OPT_HDR_BUF(nd6_opt_offset)->len << 3);
1023 if(UIP_ND6_RA_BUF->router_lifetime != 0) {
1030 long)(uip_ntohs(UIP_ND6_RA_BUF->router_lifetime)));
1033 (
unsigned long)(uip_ntohs(UIP_ND6_RA_BUF->router_lifetime)));
1037 uip_ds6_defrt_rm(
defrt);
1041#if UIP_CONF_IPV6_QUEUE_PKT
1050 if(
nbr != NULL && uip_packetqueue_buflen(&
nbr->packethandle) != 0) {
1051 uip_len = uip_packetqueue_buflen(&
nbr->packethandle);
1053 uip_packetqueue_free(&
nbr->packethandle);
1067UIP_ICMP6_HANDLER(ns_input_handler,
ICMP6_NS, UIP_ICMP6_HANDLER_CODE_ANY,
1071UIP_ICMP6_HANDLER(na_input_handler,
ICMP6_NA, UIP_ICMP6_HANDLER_CODE_ANY,
1075#if UIP_CONF_ROUTER && UIP_ND6_SEND_RA
1076UIP_ICMP6_HANDLER(rs_input_handler,
ICMP6_RS, UIP_ICMP6_HANDLER_CODE_ANY,
1081UIP_ICMP6_HANDLER(ra_input_handler,
ICMP6_RA, UIP_ICMP6_HANDLER_CODE_ANY,
1099#if UIP_CONF_ROUTER && UIP_ND6_SEND_RA
unsigned long clock_seconds(void)
Get the current value of the platform seconds.
static void stimer_set(struct stimer *t, unsigned long interval)
Set a timer.
static unsigned long stimer_remaining(struct stimer *t)
The time until the timer expires.
void uip_nd6_ns_output(const uip_ipaddr_t *src, const uip_ipaddr_t *dest, uip_ipaddr_t *tgt)
Send a neighbor solicitation, send a Neighbor Advertisement.
#define uip_create_linklocal_allrouters_mcast(a)
set IP address a to the link local all-routers multicast address
uint32_t uip_nameserver_next_expiration(void)
Get next expiration time.
const uip_lladdr_t * uip_ds6_nbr_get_ll(const uip_ds6_nbr_t *nbr)
Get the link-layer address associated with a specified nbr cache.
#define uip_create_unspecified(a)
set IP address a to unspecified
uip_ds6_nbr_t * uip_ds6_nbr_add(const uip_ipaddr_t *ipaddr, const uip_lladdr_t *lladdr, uint8_t isrouter, uint8_t state, nbr_table_reason_t reason, void *data)
Add a neighbor cache for a specified IPv6 address, which is associated with a specified link-layer ad...
uip_lladdr_t uip_lladdr
Host L2 address.
int uip_ds6_nbr_update_ll(uip_ds6_nbr_t **nbr_pp, const uip_lladdr_t *new_ll_addr)
Update the link-layer address associated with an IPv6 address.
#define uip_is_addr_unspecified(a)
Is IPv6 address a the unspecified address a is of type uip_ipaddr_t.
void uip_nameserver_update(const uip_ipaddr_t *nameserver, uint32_t lifetime)
Initialize the module variables.
#define UIP_ICMP_BUF
Direct access to ICMP, UDP, and TCP headers and payload, with implicit ext header offset (global uip_...
#define ICMP6_NS
Neighbor Solicitation.
#define UIP_LLADDR_LEN
802.15.4 address
#define NBR_INCOMPLETE
Possible states for the nbr cache entries.
int uip_ds6_nbr_rm(uip_ds6_nbr_t *nbr)
Remove a neighbor cache.
uip_ds6_nbr_t * uip_ds6_nbr_lookup(const uip_ipaddr_t *ipaddr)
Get the neighbor cache associated with a specified IPv6 address.
void uip_nd6_rs_output(void)
Neighbor Solicitation Processing.
#define uip_is_addr_mcast(a)
is address a multicast address, see RFC 4291 a is of type uip_ipaddr_t*
uip_ds6_addr_t * uip_ds6_addr_add(uip_ipaddr_t *ipaddr, unsigned long vlifetime, uint8_t type)
Add a unicast address to the interface.
#define ICMP6_NA
Neighbor advertisement.
#define UIP_ND6_INFINITE_LIFETIME
INFINITE lifetime.
void uip_nd6_init()
Initialise the uIP ND core.
#define UIP_STAT(s)
The uIP TCP/IP statistics.
int uip_ds6_dad_failed(uip_ds6_addr_t *addr)
Callback when DAD failed.
#define uip_create_solicited_node(a, b)
put in b the solicited node address corresponding to address a both a and b are of type uip_ipaddr_t*
#define ICMP6_RS
Router Solicitation.
#define UIP_ND6_OPT_LLAO_LEN
length of a ND6 LLAO option for default L2 type (e.g.
#define uip_is_addr_linklocal(a)
is addr (a) a link local unicast address, see RFC 4291 i.e.
#define uip_is_addr_solicited_node(a)
is addr (a) a solicited node multicast address, see RFC 4291 a is of type uip_ipaddr_t*
void uip_ds6_select_src(uip_ipaddr_t *src, uip_ipaddr_t *dst)
Source address selection, see RFC 3484.
#define UIP_NAMESERVER_INFINITE_LIFETIME
Infinite Lifetime indicator.
void uip_ds6_set_addr_iid(uip_ipaddr_t *ipaddr, const uip_lladdr_t *lladdr)
set the last 64 bits of an IP address based on the MAC address
uip_ds6_prefix_t uip_ds6_prefix_list[UIP_DS6_PREFIX_NB]
Prefix list.
void uip_icmp6_register_input_handler(uip_icmp6_input_handler_t *handler)
Register a handler which can handle a specific ICMPv6 message type.
uip_ipaddr_t * uip_nameserver_get(uint8_t num)
Get a Nameserver ip address given in RA.
#define UIP_ND6_HOP_LIMIT
HOP LIMIT to be used when sending ND messages (255)
#define ADDR_TENTATIVE
Possible states for the an address (RFC 4862)
#define ICMP6_RA
Router Advertisement.
uint16_t uip_nameserver_count(void)
Get the number of recorded name servers.
uip_ds6_netif_t uip_ds6_if
The single interface.
#define uip_create_linklocal_allnodes_mcast(a)
set IP address a to the link local all-nodes multicast address
uint32_t uip_ds6_compute_reachable_time(void)
Compute the reachable time based on base reachable time, see RFC 4861.
#define UIP_IP_BUF
Direct access to IPv6 header.
#define uip_ipaddr_copy(dest, src)
Copy an IP address from one place to another.
uint16_t uip_htons(uint16_t val)
Convert a 16-bit quantity from host byte order to network byte order.
#define uip_buf
Macro to access uip_aligned_buf as an array of bytes.
uint16_t uip_len
The length of the packet in the uip_buf buffer.
Header file for the logging system.
Unicast address structure.
An entry in the default router list.
The default nbr_table entry (when UIP_DS6_NBR_MULTI_IPV6_ADDRS is disabled), that implements nbr cach...
A neighbor solicitation constant part.
ND option prefix information.
Header file for IPv6-related data structures.
Header file for ICMPv6 message and error handing (RFC 4443)
uIP Name Server interface
static uip_ds6_nbr_t * nbr
Pointer to llao option in uip_buf.
void ra_input(void)
Process a Router Advertisement.
static uip_ipaddr_t ipaddr
Pointer to prefix information option in uip_buf.
static uip_ds6_defrt_t * defrt
Pointer to an interface address.
static uip_nd6_opt_prefix_info * nd6_opt_prefix_info
Pointer to a router list entry.
static int extract_lladdr_from_llao_aligned(uip_lladdr_t *dest)
Pointer to a prefix list entry.
static uint8_t * nd6_opt_llao
Offset from the end of the icmpv6 header to the option in uip_buf.
static uip_ds6_addr_t * addr
Pointer to a nbr cache entry.
Header file for IPv6 Neighbor discovery (RFC 4861)