Skip to content

Commit

Permalink
submodule: bump openthread from 5cab158 to 12af023
Browse files Browse the repository at this point in the history
Bumps [openthread](https://github.com/openthread/openthread) from `5cab158` to `12af023`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@5cab158...12af023)

---
updated-dependencies:
- dependency-name: openthread
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 12, 2023
1 parent d4b4dab commit c5f9721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 66 files
+3 −0 .github/workflows/build.yml
+3 −3 .github/workflows/otns.yml
+1 −0 etc/cmake/options.cmake
+26 −0 include/openthread/border_routing.h
+1 −1 include/openthread/instance.h
+2 −0 include/openthread/ip6.h
+12 −8 include/openthread/platform/crypto.h
+1 −0 script/check-scan-build
+1 −0 script/cmake-build
+47 −0 src/cli/README.md
+1 −1 src/cli/README_SRP.md
+146 −10 src/cli/cli.cpp
+1 −0 src/cli/cli.hpp
+11 −0 src/cli/cli_srp_client.cpp
+5 −0 src/cli/cli_srp_server.cpp
+4 −0 src/cli/cli_tcp.cpp
+7 −0 src/core/api/border_routing_api.cpp
+1 −1 src/core/api/coap_secure_api.cpp
+272 −191 src/core/border_router/routing_manager.cpp
+71 −17 src/core/border_router/routing_manager.hpp
+1 −13 src/core/coap/coap_secure.hpp
+96 −67 src/core/crypto/crypto_platform.cpp
+4 −7 src/core/meshcop/announce_begin_client.cpp
+6 −6 src/core/meshcop/dataset.cpp
+1 −1 src/core/meshcop/dataset_manager.cpp
+4 −4 src/core/meshcop/dataset_manager_ftd.cpp
+5 −8 src/core/meshcop/energy_scan_client.cpp
+2 −2 src/core/meshcop/meshcop.cpp
+86 −137 src/core/meshcop/meshcop_tlvs.cpp
+68 −205 src/core/meshcop/meshcop_tlvs.hpp
+5 −8 src/core/meshcop/panid_query_client.cpp
+69 −44 src/core/meshcop/secure_transport.cpp
+25 −3 src/core/meshcop/secure_transport.hpp
+16 −3 src/core/net/ip6.cpp
+1 −1 src/core/radio/ble_secure.cpp
+12 −0 src/core/radio/radio.cpp
+75 −18 src/core/radio/radio.hpp
+1 −1 src/core/thread/announce_begin_server.cpp
+23 −10 src/core/thread/discover_scanner.cpp
+1 −1 src/core/thread/discover_scanner.hpp
+7 −10 src/core/thread/energy_scan_server.cpp
+37 −22 src/core/thread/mesh_forwarder.cpp
+2 −1 src/core/thread/mesh_forwarder.hpp
+3 −1 src/core/thread/mesh_forwarder_ftd.cpp
+1 −1 src/core/thread/mesh_forwarder_mtd.cpp
+3 −0 src/core/thread/mle.cpp
+1 −2 src/core/thread/mle_tlvs.cpp
+2 −5 src/core/thread/network_diagnostic.cpp
+5 −8 src/core/thread/panid_query_server.cpp
+10 −0 src/lib/spinel/openthread-spinel-config.h
+5 −2 src/lib/spinel/radio_spinel.hpp
+8 −0 src/posix/platform/include/openthread/openthread-system.h
+3 −3 src/posix/platform/infra_if.cpp
+0 −8 src/posix/platform/platform-posix.h
+35 −0 tests/scripts/expect/cli-debug.exp
+14 −14 tests/scripts/thread-cert/border_router/nat64/test_multi_border_routers.py
+16 −16 tests/scripts/thread-cert/border_router/nat64/test_single_border_router.py
+15 −15 tests/scripts/thread-cert/border_router/nat64/test_with_infrastructure_prefix.py
+8 −8 tests/scripts/thread-cert/border_router/test_multi_border_routers.py
+4 −4 tests/scripts/thread-cert/border_router/test_multi_thread_networks.py
+5 −5 tests/scripts/thread-cert/border_router/test_on_link_prefix.py
+2 −0 tests/scripts/thread-cert/border_router/test_publish_meshcop_service.py
+4 −4 tests/scripts/thread-cert/border_router/test_radvd_coexist.py
+12 −12 tests/scripts/thread-cert/border_router/test_single_border_router.py
+12 −12 tests/scripts/thread-cert/node.py
+33 −3 tests/unit/test_routing_manager.cpp

0 comments on commit c5f9721

Please sign in to comment.