-
Notifications
You must be signed in to change notification settings - Fork 59
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 `a363396` to `4f6b492`. - [Commits](openthread/openthread@a363396...4f6b492) --- 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
8447811
commit d3a7b94
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
27 files
+10 −7 | include/openthread/coap.h | |
+1 −1 | include/openthread/instance.h | |
+2 −0 | include/openthread/ip6.h | |
+50 −0 | include/openthread/message.h | |
+3 −2 | include/openthread/udp.h | |
+21 −4 | src/core/api/coap_api.cpp | |
+8 −2 | src/core/api/ip6_api.cpp | |
+17 −0 | src/core/api/message_api.cpp | |
+14 −2 | src/core/api/udp_api.cpp | |
+8 −2 | src/core/border_router/routing_manager.cpp | |
+4 −0 | src/core/common/message.cpp | |
+61 −10 | src/core/common/message.hpp | |
+11 −0 | src/core/config/border_routing.h | |
+49 −37 | src/core/net/ip6.cpp | |
+8 −29 | src/core/net/ip6.hpp | |
+4 −0 | src/core/net/ip6_mpl.cpp | |
+1 −1 | src/core/net/nat64_translator.cpp | |
+19 −0 | src/core/net/nd6.cpp | |
+11 −0 | src/core/net/nd6.hpp | |
+4 −1 | src/core/thread/mesh_forwarder.cpp | |
+3 −1 | src/core/thread/mesh_forwarder_ftd.cpp | |
+2 −0 | src/posix/platform/netif.cpp | |
+27 −1 | tests/scripts/thread-cert/border_router/test_firewall.py | |
+1 −0 | tests/scripts/thread-cert/config.py | |
+0 −0 | tests/scripts/thread-cert/pktverify/verify.py | |
+27 −0 | tests/unit/test_message.cpp | |
+20 −0 | tests/unit/test_routing_manager.cpp |