-
Notifications
You must be signed in to change notification settings - Fork 12
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 `6e7ed5c` to `30c94db`. - [Commits](openthread/openthread@6e7ed5c...30c94db) --- 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
17132d0
commit 4c9cd7c
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
27 files
+1 −1 | .github/workflows/fuzz.yml | |
+6 −6 | .github/workflows/otbr.yml | |
+6 −6 | .github/workflows/otns.yml | |
+9 −9 | .github/workflows/posix.yml | |
+1 −1 | .github/workflows/scorecards.yml | |
+13 −13 | .github/workflows/simulation-1.1.yml | |
+13 −13 | .github/workflows/simulation-1.2.yml | |
+1 −1 | .github/workflows/toranj.yml | |
+1 −1 | .github/workflows/unit.yml | |
+11 −0 | examples/apps/cli/main.c | |
+11 −0 | examples/apps/ncp/main.c | |
+38 −8 | include/openthread/border_routing.h | |
+1 −1 | include/openthread/instance.h | |
+22 −0 | include/openthread/message.h | |
+38 −2 | src/cli/README_BR.md | |
+63 −8 | src/cli/cli_br.cpp | |
+3 −0 | src/cli/cli_br.hpp | |
+375 −0 | src/cli/cli_srp_client.cpp | |
+10 −0 | src/core/api/border_routing_api.cpp | |
+7 −0 | src/core/api/message_api.cpp | |
+133 −28 | src/core/border_router/routing_manager.cpp | |
+37 −6 | src/core/border_router/routing_manager.hpp | |
+8 −0 | src/core/net/nd6.hpp | |
+2 −2 | src/core/thread/mlr_manager.cpp | |
+0 −1 | src/posix/main.c | |
+2 −0 | src/posix/platform/spi_interface.cpp | |
+347 −25 | tests/unit/test_routing_manager.cpp |