Skip to content

Commit 6cde07a

Browse files
author
Juha Heiskanen
authored
Merge pull request #2034 from ARMmbed/ws_aro_lifetime_fix
Fixxed ARO lifetime /60 +1 . now resolution is OK.
2 parents 9c97cac + 780e521 commit 6cde07a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/RPL/rpl_downward.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ void rpl_instance_send_address_registration(protocol_interface_info_entry_t *int
590590

591591
aro.status = ARO_SUCCESS;
592592
aro.present = true;
593-
aro.lifetime = addr->valid_lifetime;
593+
aro.lifetime = (addr->valid_lifetime / 60) + 1;
594594
memcpy(aro.eui64, interface->mac, 8);
595595

596596
// go through neighbour list, and send to all assigned parents.

0 commit comments

Comments
 (0)