From ec236da9728b1ac07761f67d90b73b4614070118 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Tue, 4 Oct 2016 13:36:30 +0200 Subject: [PATCH] Add comment for my last changes --- src/include/lwip/nd6.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/lwip/nd6.h b/src/include/lwip/nd6.h index c5f27d73..e4715ad3 100644 --- a/src/include/lwip/nd6.h +++ b/src/include/lwip/nd6.h @@ -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; };