Skip to content

Commit

Permalink
address registration and coap port updates (ARMmbed#2009)
Browse files Browse the repository at this point in the history
address registration on behalf of MTD updated.
Default backbone coap port updated.
  • Loading branch information
deepakvenugopal authored Mar 12, 2019
1 parent f871797 commit 274abdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions source/6LoWPAN/Thread/thread_extension.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,10 @@ void thread_extension_address_registration(struct protocol_interface_info_entry
uint8_t seq;
uint32_t delay_timer;

if (!thread_extension_version_check(interface->thread_info->version)) {
return;
}

if (!thread_extension_is_domain_prefix(interface, addr)) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion source/6LoWPAN/Thread/thread_extension_bbr.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static NS_LIST_DEFINE(duplicate_dua_tr_list, duplicate_dua_tr_t, link);
#define THREAD_BBR_MLR_REGISTRATION_TIMEOUT 600 //<* Default MLR timeout in seconds
#define THREAD_BBR_DUA_REGISTRATION_TIMEOUT 3600
#define THREAD_BBR_DUA_REGISTRATION_DELAY 5000 // 5 seconds in ms
#define THREAD_BBR_BACKBONE_PORT 5683 //<* Backbone border router
#define THREAD_BBR_BACKBONE_PORT 61631 //<* Backbone border router
#define THREAD_BBR_DUA_DAD_QUERY_TIMEOUT 1 // wait period for Duplicate Address Detection
#define THREAD_BBR_DUA_DAD_REPEATS 2 // multicast repeated as part of DUA

Expand Down

0 comments on commit 274abdd

Please sign in to comment.