mirror of
https://github.com/espressif/openthread.git
synced 2026-08-14 14:47:46 +00:00
[bbr] rename file name with bbr_ prefix (#5240)
This commit is contained in:
+2
-2
@@ -174,8 +174,8 @@ LOCAL_SRC_FILES := \
|
||||
src/core/api/thread_api.cpp \
|
||||
src/core/api/thread_ftd_api.cpp \
|
||||
src/core/api/udp_api.cpp \
|
||||
src/core/backbone_router/leader.cpp \
|
||||
src/core/backbone_router/local.cpp \
|
||||
src/core/backbone_router/bbr_leader.cpp \
|
||||
src/core/backbone_router/bbr_local.cpp \
|
||||
src/core/coap/coap.cpp \
|
||||
src/core/coap/coap_message.cpp \
|
||||
src/core/coap/coap_secure.cpp \
|
||||
|
||||
@@ -66,8 +66,8 @@ static_library("lib-ot-core") {
|
||||
"src/core/api/thread_api.cpp",
|
||||
"src/core/api/thread_ftd_api.cpp",
|
||||
"src/core/api/udp_api.cpp",
|
||||
"src/core/backbone_router/leader.cpp",
|
||||
"src/core/backbone_router/local.cpp",
|
||||
"src/core/backbone_router/bbr_leader.cpp",
|
||||
"src/core/backbone_router/bbr_local.cpp",
|
||||
"src/core/coap/coap.cpp",
|
||||
"src/core/coap/coap_message.cpp",
|
||||
"src/core/coap/coap_secure.cpp",
|
||||
|
||||
@@ -102,8 +102,8 @@ set(COMMON_SOURCES
|
||||
api/thread_api.cpp
|
||||
api/thread_ftd_api.cpp
|
||||
api/udp_api.cpp
|
||||
backbone_router/leader.cpp
|
||||
backbone_router/local.cpp
|
||||
backbone_router/bbr_leader.cpp
|
||||
backbone_router/bbr_local.cpp
|
||||
coap/coap.cpp
|
||||
coap/coap_message.cpp
|
||||
coap/coap_secure.cpp
|
||||
|
||||
@@ -144,8 +144,8 @@ SOURCES_COMMON = \
|
||||
api/thread_api.cpp \
|
||||
api/thread_ftd_api.cpp \
|
||||
api/udp_api.cpp \
|
||||
backbone_router/leader.cpp \
|
||||
backbone_router/local.cpp \
|
||||
backbone_router/bbr_leader.cpp \
|
||||
backbone_router/bbr_local.cpp \
|
||||
coap/coap.cpp \
|
||||
coap/coap_message.cpp \
|
||||
coap/coap_secure.cpp \
|
||||
@@ -315,8 +315,8 @@ endif # OPENTHREAD_ENABLE_VENDOR_EXTENSION
|
||||
|
||||
HEADERS_COMMON = \
|
||||
openthread-core-config.h \
|
||||
backbone_router/leader.hpp \
|
||||
backbone_router/local.hpp \
|
||||
backbone_router/bbr_leader.hpp \
|
||||
backbone_router/bbr_local.hpp \
|
||||
coap/coap.hpp \
|
||||
coap/coap_message.hpp \
|
||||
coap/coap_secure.hpp \
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* This file implements Primary Backbone Router service management in the Thread Network.
|
||||
*/
|
||||
|
||||
#include "leader.hpp"
|
||||
#include "bbr_leader.hpp"
|
||||
|
||||
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* This file implements local Backbone Router service.
|
||||
*/
|
||||
|
||||
#include "local.hpp"
|
||||
#include "bbr_local.hpp"
|
||||
|
||||
#if OPENTHREAD_FTD && OPENTHREAD_CONFIG_BACKBONE_ROUTER_ENABLE
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
#include <openthread/backbone_router.h>
|
||||
#include <openthread/backbone_router_ftd.h>
|
||||
|
||||
#include "backbone_router/leader.hpp"
|
||||
#include "backbone_router/bbr_leader.hpp"
|
||||
#include "common/locator.hpp"
|
||||
#include "net/netif.hpp"
|
||||
#include "thread/network_data.hpp"
|
||||
@@ -79,10 +79,10 @@
|
||||
#endif
|
||||
|
||||
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
||||
#include "backbone_router/leader.hpp"
|
||||
#include "backbone_router/bbr_leader.hpp"
|
||||
|
||||
#if OPENTHREAD_FTD && OPENTHREAD_CONFIG_BACKBONE_ROUTER_ENABLE
|
||||
#include "backbone_router/local.hpp"
|
||||
#include "backbone_router/bbr_local.hpp"
|
||||
#endif
|
||||
|
||||
#endif // (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
||||
|
||||
#include "backbone_router/leader.hpp"
|
||||
#include "backbone_router/bbr_leader.hpp"
|
||||
#include "common/locator.hpp"
|
||||
#include "net/netif.hpp"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
#include <stdint.h>
|
||||
|
||||
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
||||
#include "backbone_router/leader.hpp"
|
||||
#include "backbone_router/bbr_leader.hpp"
|
||||
#endif
|
||||
|
||||
#include "coap/coap.hpp"
|
||||
|
||||
@@ -48,10 +48,10 @@
|
||||
#endif // OPENTHREAD_CONFIG_COMMISSIONER_ENABLE && OPENTHREAD_FTD
|
||||
|
||||
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
||||
#include "backbone_router/leader.hpp"
|
||||
#include "backbone_router/bbr_leader.hpp"
|
||||
#endif
|
||||
#if OPENTHREAD_FTD && OPENTHREAD_CONFIG_BACKBONE_ROUTER_ENABLE
|
||||
#include "backbone_router/local.hpp"
|
||||
#include "backbone_router/bbr_local.hpp"
|
||||
#endif
|
||||
|
||||
#if OPENTHREAD_CONFIG_DUA_ENABLE
|
||||
|
||||
Reference in New Issue
Block a user