Add comment for my last changes

This commit is contained in:
Dirk Ziegelmeier 2016-10-04 13:36:30 +02:00
parent ee27daffc4
commit ec236da972

View File

@ -74,10 +74,10 @@ struct nd6_neighbor_cache_entry {
u8_t state;
u8_t isrouter;
union {
u32_t reachable_time;
u32_t delay_time;
u32_t reachable_time; /* in ms since value may originate from network packet */
u32_t delay_time; /* ticks (ND6_TMR_INTERVAL) */
u32_t probes_sent;
u32_t stale_time;
u32_t stale_time; /* ticks (ND6_TMR_INTERVAL) */
} counter;
};
@ -91,7 +91,7 @@ struct nd6_destination_cache_entry {
struct nd6_prefix_list_entry {
ip6_addr_t prefix;
struct netif *netif;
u32_t invalidation_timer;
u32_t invalidation_timer; /* in ms since value may originate from network packet */
#if LWIP_IPV6_AUTOCONFIG
u8_t flags;
#define ND6_PREFIX_AUTOCONFIG_AUTONOMOUS 0x01
@ -102,7 +102,7 @@ struct nd6_prefix_list_entry {
struct nd6_router_list_entry {
struct nd6_neighbor_cache_entry *neighbor_entry;
u32_t invalidation_timer;
u32_t invalidation_timer; /* in ms since value may originate from network packet */
u8_t flags;
};