Skip to content
Snippets Groups Projects
Commit 3b3eaab9 authored by Lotte Steenbrink's avatar Lotte Steenbrink
Browse files

Merge pull request #2896 from Lotterleben/aodvv2_fix_rreqtable_redundancy_check

aodvv2: fix check for redundant RREQ
parents ec018b26 02efbadc
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,7 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data) ...@@ -117,7 +117,7 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data)
{ {
struct aodvv2_rreq_entry *comparable_rreq; struct aodvv2_rreq_entry *comparable_rreq;
timex_t now; timex_t now;
bool result; bool result = false;
mutex_lock(&rreqt_mutex); mutex_lock(&rreqt_mutex);
comparable_rreq = _get_comparable_rreq(packet_data); comparable_rreq = _get_comparable_rreq(packet_data);
...@@ -125,7 +125,6 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data) ...@@ -125,7 +125,6 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data)
/* if there is no comparable rreq stored, add one and return false */ /* if there is no comparable rreq stored, add one and return false */
if (comparable_rreq == NULL) { if (comparable_rreq == NULL) {
_add_rreq(packet_data); _add_rreq(packet_data);
result = false;
} }
else { else {
int seqnum_comparison = seqnum_cmp(packet_data->origNode.seqnum, comparable_rreq->seqnum); int seqnum_comparison = seqnum_cmp(packet_data->origNode.seqnum, comparable_rreq->seqnum);
...@@ -140,8 +139,9 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data) ...@@ -140,8 +139,9 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data)
} }
if (seqnum_comparison == 1) { if (seqnum_comparison == 1) {
/* Update RREQ table entry with new seqnum value */ /* Update RREQ table entry with new seqnum and metric value */
comparable_rreq->seqnum = packet_data->origNode.seqnum; comparable_rreq->seqnum = packet_data->origNode.seqnum;
comparable_rreq->metric = packet_data->origNode.metric;
} }
/* /*
...@@ -159,7 +159,6 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data) ...@@ -159,7 +159,6 @@ bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data)
/* Since we've changed RREQ info, update the timestamp */ /* Since we've changed RREQ info, update the timestamp */
vtimer_now(&now); vtimer_now(&now);
comparable_rreq->timestamp = now; comparable_rreq->timestamp = now;
result = true;
} }
mutex_unlock(&rreqt_mutex); mutex_unlock(&rreqt_mutex);
......
...@@ -91,6 +91,7 @@ void rreqtable_init(void); ...@@ -91,6 +91,7 @@ void rreqtable_init(void);
* Check if a RREQ is redundant, i.e. was received from another node already. * Check if a RREQ is redundant, i.e. was received from another node already.
* Behaves as described in Sections 5.7. and 7.6. * Behaves as described in Sections 5.7. and 7.6.
* @param packet_data data of the RREQ in question * @param packet_data data of the RREQ in question
* @return true if packet_data is redundant, false otherwise.
*/ */
bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data); bool rreqtable_is_redundant(struct aodvv2_packet_data *packet_data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment