-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps [openthread](https://github.com/openthread/openthread) from `6f3b431` to `dc6bf36`. - [Commits](openthread/openthread@6f3b431...dc6bf36) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
aab054e
commit cfe52de
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
20 files
+57 −20 | CODE_OF_CONDUCT.md | |
+11 −0 | examples/apps/cli/main.c | |
+11 −0 | examples/apps/ncp/main.c | |
+1 −1 | include/openthread/instance.h | |
+22 −0 | include/openthread/message.h | |
+2 −0 | src/cli/BUILD.gn | |
+1 −0 | src/cli/CMakeLists.txt | |
+4 −447 | src/cli/cli.cpp | |
+5 −39 | src/cli/cli.hpp | |
+530 −0 | src/cli/cli_link_metrics.cpp | |
+128 −0 | src/cli/cli_link_metrics.hpp | |
+375 −0 | src/cli/cli_srp_client.cpp | |
+7 −0 | src/core/api/message_api.cpp | |
+72 −13 | src/core/border_router/routing_manager.cpp | |
+5 −3 | src/core/border_router/routing_manager.hpp | |
+8 −0 | src/core/net/nd6.hpp | |
+2 −2 | src/core/thread/mlr_manager.cpp | |
+8 −3 | src/lib/spinel/radio_spinel.hpp | |
+0 −1 | src/posix/main.c | |
+343 −21 | tests/unit/test_routing_manager.cpp |