1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #3090 from BytesGalore/fib_add_word_on_lifetime

fib: added a word on the lifetime of a FIB entry
This commit is contained in:
Lotte Steenbrink 2015-05-27 15:28:05 +02:00
commit b7b384d052

View File

@ -34,7 +34,7 @@ extern "C" {
typedef struct fib_entry_t { typedef struct fib_entry_t {
/** interface ID */ /** interface ID */
kernel_pid_t iface_id; kernel_pid_t iface_id;
/** Lifetime of this entry */ /** Lifetime of this entry (an absolute time-point is stored by the FIB) */
timex_t lifetime; timex_t lifetime;
/** Unique identifier for the type of the global address */ /** Unique identifier for the type of the global address */
uint32_t global_flags; uint32_t global_flags;