Merge pull request #910 from cetic/pr-dio-suppr-disabling

Allow disabling of DIO suppression as required by RFC
This commit is contained in:
Nicolas Tsiftes 2015-01-03 11:35:08 +01:00
commit 79517eb477
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ handle_dio_timer(void *ptr)
if(instance->dio_send) {
/* send DIO if counter is less than desired redundancy */
if(instance->dio_counter < instance->dio_redundancy) {
if(instance->dio_redundancy != 0 && instance->dio_counter < instance->dio_redundancy) {
#if RPL_CONF_STATS
instance->dio_totsend++;
#endif /* RPL_CONF_STATS */