mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Allow disabling of DIO suppression as required in RFC
This commit is contained in:
parent
7286c9a635
commit
d540d2b5af
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user