44#ifndef LWIP_HDR_ND6_PRIV_H
45#define LWIP_HDR_ND6_PRIV_H
65 struct nd6_q_entry *next;
71struct nd6_neighbor_cache_entry {
72 ip6_addr_t next_hop_address;
78 struct nd6_q_entry *q;
93struct nd6_destination_cache_entry {
94 ip6_addr_t destination_addr;
95 ip6_addr_t next_hop_addr;
100struct nd6_prefix_list_entry {
103 u32_t invalidation_timer;
106struct nd6_router_list_entry {
107 struct nd6_neighbor_cache_entry *neighbor_entry;
108 u32_t invalidation_timer;
112enum nd6_neighbor_cache_entry_state {
121#define ND6_HOPLIM 255
127extern struct nd6_neighbor_cache_entry neighbor_cache[];
128extern struct nd6_destination_cache_entry destination_cache[];
129extern struct nd6_prefix_list_entry prefix_list[];
130extern struct nd6_router_list_entry default_router_list[];
133extern u32_t reachable_time;
134extern u32_t retrans_timer;
#define NETIF_MAX_HWADDR_LEN
Definition: netif.h:63