Skip to content

Commit b1ef0f6

Browse files
author
Juha Heiskanen
committed
Removed Address reg pending and rady mask from address.
Change-Id: I58e93e260af43e9e593a942bdb89dd94eebd4dd9
1 parent ce672ba commit b1ef0f6

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

source/6LoWPAN/ws/ws_bootstrap.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2650,7 +2650,6 @@ void ws_secondary_parent_update(protocol_interface_info_entry_t *interface)
26502650
if (interface->ws_info) {
26512651
ns_list_foreach(if_address_entry_t, address, &interface->ip_addresses) {
26522652
if (!addr_is_ipv6_link_local(address->address)) {
2653-
address->addr_reg_done = 0;
26542653
ws_address_registration_update(interface);
26552654
}
26562655
}

source/Core/include/ns_address_internal.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ typedef struct if_address_entry {
9696
bool temporary: 1; // RFC 4941 temporary address
9797
bool tentative: 1; // Tentative address (Duplicate Address Detection running)
9898
bool group_added: 1; // Solicited-Node group added
99-
uint8_t addr_reg_pend; // Bitmask for pending address registrations. Based on RPL path control bits
100-
uint8_t addr_reg_done; // Bitmask for address registration done. Based on RPL path control bits
10199
if_address_source_t source; //
102100
if_address_callback_fn *cb; // Address protocol callback function
103101
void *data; // Address protocol data

source/Core/ns_address_internal.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,6 @@ void addr_fast_timer(protocol_interface_info_entry_t *cur, uint_fast16_t ticks)
865865
}
866866
#endif
867867
} else {
868-
addr->addr_reg_done = 0;
869868
addr_cb(cur, addr, ADDR_CALLBACK_TIMER);
870869
}
871870

0 commit comments

Comments
 (0)