mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-08-04 13:34:38 +08:00
Add comment for my last changes
This commit is contained in:
parent
ee27daffc4
commit
ec236da972
@ -74,10 +74,10 @@ struct nd6_neighbor_cache_entry {
|
|||||||
u8_t state;
|
u8_t state;
|
||||||
u8_t isrouter;
|
u8_t isrouter;
|
||||||
union {
|
union {
|
||||||
u32_t reachable_time;
|
u32_t reachable_time; /* in ms since value may originate from network packet */
|
||||||
u32_t delay_time;
|
u32_t delay_time; /* ticks (ND6_TMR_INTERVAL) */
|
||||||
u32_t probes_sent;
|
u32_t probes_sent;
|
||||||
u32_t stale_time;
|
u32_t stale_time; /* ticks (ND6_TMR_INTERVAL) */
|
||||||
} counter;
|
} counter;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ struct nd6_destination_cache_entry {
|
|||||||
struct nd6_prefix_list_entry {
|
struct nd6_prefix_list_entry {
|
||||||
ip6_addr_t prefix;
|
ip6_addr_t prefix;
|
||||||
struct netif *netif;
|
struct netif *netif;
|
||||||
u32_t invalidation_timer;
|
u32_t invalidation_timer; /* in ms since value may originate from network packet */
|
||||||
#if LWIP_IPV6_AUTOCONFIG
|
#if LWIP_IPV6_AUTOCONFIG
|
||||||
u8_t flags;
|
u8_t flags;
|
||||||
#define ND6_PREFIX_AUTOCONFIG_AUTONOMOUS 0x01
|
#define ND6_PREFIX_AUTOCONFIG_AUTONOMOUS 0x01
|
||||||
@ -102,7 +102,7 @@ struct nd6_prefix_list_entry {
|
|||||||
|
|
||||||
struct nd6_router_list_entry {
|
struct nd6_router_list_entry {
|
||||||
struct nd6_neighbor_cache_entry *neighbor_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;
|
u8_t flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user