Fix warnings caused by incorrect param names / undocumented params

This commit is contained in:
George Oikonomou 2015-02-15 17:06:44 +01:00
parent 45ec3ea9d9
commit fb22e15844
10 changed files with 13 additions and 10 deletions

View file

@ -64,12 +64,13 @@ uint32_t anti_replay_get_counter(void);
/**
* \brief Initializes the anti-replay information about the sender
* \param info Anti-replay information about the sender
*/
void anti_replay_init_info(struct anti_replay_info *info);
/**
* \brief Checks if received frame was replayed
* \param last_counters Anti-replay information about the sender
* \param info Anti-replay information about the sender
* \retval 0 <-> received frame was not replayed
*/
int anti_replay_was_replayed(struct anti_replay_info *info);