Skip to content

Commit

Permalink
Fixxed ARO lifetime /60 +1 . now resolution is OK.
Browse files Browse the repository at this point in the history
Change-Id: Ib7e30d35ef6903fb09c44facbe0c572aff54f604
  • Loading branch information
Juha Heiskanen committed Mar 26, 2019
1 parent fe4073b commit 780e521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/RPL/rpl_downward.c
Expand Up @@ -590,7 +590,7 @@ void rpl_instance_send_address_registration(protocol_interface_info_entry_t *int

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

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

0 comments on commit 780e521

Please sign in to comment.