Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 5, 2023
1 parent 8a5afe6 commit ad59491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 82 files
+3 −3 .github/workflows/otns.yml
+1 −0 etc/cmake/options.cmake
+3 −0 etc/gn/openthread.gni
+1 −0 examples/platforms/simulation/CMakeLists.txt
+75 −0 examples/platforms/simulation/ble.c
+3 −0 include/openthread/BUILD.gn
+434 −0 include/openthread/ble_secure.h
+26 −0 include/openthread/border_routing.h
+1 −1 include/openthread/instance.h
+2 −0 include/openthread/ip6.h
+293 −0 include/openthread/platform/ble.h
+12 −8 include/openthread/platform/crypto.h
+170 −0 include/openthread/tcat.h
+3 −0 script/check-simulation-build-cmake
+1 −0 src/cli/CMakeLists.txt
+1 −0 src/cli/README.md
+37 −0 src/cli/README_TCAT.md
+10 −0 src/cli/cli.cpp
+4 −0 src/cli/cli.hpp
+10 −0 src/cli/cli_config.h
+178 −0 src/cli/cli_tcat.cpp
+89 −0 src/cli/cli_tcat.hpp
+12 −3 src/core/BUILD.gn
+4 −1 src/core/CMakeLists.txt
+184 −0 src/core/api/ble_secure_api.cpp
+7 −0 src/core/api/border_routing_api.cpp
+31 −1 src/core/border_router/routing_manager.cpp
+17 −0 src/core/border_router/routing_manager.hpp
+6 −5 src/core/coap/coap_secure.cpp
+6 −6 src/core/coap/coap_secure.hpp
+2 −1 src/core/common/message.hpp
+2 −2 src/core/config/ip6.h
+1 −1 src/core/config/openthread-core-config-check.h
+13 −9 src/core/config/secure_transport.h
+96 −67 src/core/crypto/crypto_platform.cpp
+5 −2 src/core/instance/instance.cpp
+11 −2 src/core/instance/instance.hpp
+1 −1 src/core/meshcop/commissioner.hpp
+6 −6 src/core/meshcop/dataset.cpp
+8 −9 src/core/meshcop/dataset_manager_ftd.cpp
+1 −1 src/core/meshcop/joiner.hpp
+2 −2 src/core/meshcop/meshcop.cpp
+3 −47 src/core/meshcop/meshcop_tlvs.cpp
+9 −61 src/core/meshcop/meshcop_tlvs.hpp
+297 −124 src/core/meshcop/secure_transport.cpp
+150 −49 src/core/meshcop/secure_transport.hpp
+516 −0 src/core/meshcop/tcat_agent.cpp
+374 −0 src/core/meshcop/tcat_agent.hpp
+16 −3 src/core/net/ip6.cpp
+1 −1 src/core/openthread-core-config.h
+544 −0 src/core/radio/ble_secure.cpp
+489 −0 src/core/radio/ble_secure.hpp
+43 −0 src/core/thread/mle_tlvs.cpp
+17 −0 src/core/thread/mle_tlvs.hpp
+1 −1 src/core/thread/thread_netif.cpp
+2 −2 src/core/thread/tmf.cpp
+1 −1 src/core/thread/tmf.hpp
+1 −1 src/core/utils/heap.hpp
+11 −0 src/lib/spinel/CMakeLists.txt
+67 −0 src/lib/spinel/example_vendor_hook.cpp
+59 −0 src/lib/spinel/example_vendor_hook.hpp
+20 −0 src/lib/spinel/openthread-spinel-config.h
+6 −0 src/lib/spinel/radio_spinel.cpp
+20 −0 src/lib/spinel/radio_spinel.hpp
+2 −0 src/posix/platform/CMakeLists.txt
+75 −0 src/posix/platform/ble.cpp
+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
+1 −1 src/posix/platform/radio.cpp
+11 −2 src/posix/platform/radio.hpp
+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
+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
+50 −0 tests/unit/test_platform.cpp
+4 −0 third_party/mbedtls/mbedtls-config.h

0 comments on commit ad59491

Please sign in to comment.