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

doc: Fix minior doxygen errors in fib

This commit is contained in:
DipSwitch 2016-04-08 08:23:48 +02:00
parent 54413ece9f
commit 4275e18c08
2 changed files with 4 additions and 3 deletions

View File

@ -294,6 +294,7 @@ int fib_sr_set(fib_table_t *table, fib_sr_t *fib_sr, kernel_pid_t *sr_iface_id,
/**
* @brief deletes the sr
*
* @param[in] table the fib instance to access
* @param[in, out] fib_sr pointer to the source route to be deleted
*
* @return 0 on success
@ -432,7 +433,7 @@ int fib_sr_entry_get_address(fib_table_t *table, fib_sr_t *fib_sr, fib_sr_entry_
* @param[out] sr_iface_id pointer to the store the iface_id for this route
* @param[in, out] sr_flags pointer to store the flags of this route
* @param[out] addr_list pointer to the location for storing the source route addresses
* @param[in, out] addr_list_elements the number of elements available in addr_list
* @param[in, out] addr_list_size the number of elements available in addr_list
* @param[in, out] element_size the provided size for one element in addr_list
* @param[in] reverse indicator if the hops should be stored in reverse order
* @param[in, out] fib_sr pointer for cosecutive receiving matching source routes.

View File

@ -93,12 +93,12 @@ typedef struct {
} fib_sr_meta_t;
/**
* @breif FIB table type for single hop entries
* @brief FIB table type for single hop entries
*/
#define FIB_TABLE_TYPE_SH (1)
/**
* @breif FIB table type for source routes
* @brief FIB table type for source routes
*/
#define FIB_TABLE_TYPE_SR (FIB_TABLE_TYPE_SH + 1)