Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 2, 2024
1 parent 0880b49 commit 87555d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 85 files
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/posix.yml
+1 −1 .github/workflows/scorecards.yml
+1 −1 .github/workflows/simulation-1.1.yml
+1 −1 .github/workflows/simulation-1.4.yml
+10 −0 include/openthread/ble_secure.h
+1 −0 include/openthread/border_routing.h
+3 −0 include/openthread/dataset.h
+1 −1 include/openthread/instance.h
+26 −0 include/openthread/link.h
+1 −0 script/test
+44 −0 src/cli/README.md
+26 −1 src/cli/README_DATASET.md
+23 −0 src/cli/cli.cpp
+3 −0 src/cli/cli_br.cpp
+30 −0 src/cli/cli_dataset.cpp
+2 −0 src/cli/cli_dataset.hpp
+4 −2 src/cli/cli_tcat.cpp
+5 −0 src/core/api/ble_secure_api.cpp
+23 −0 src/core/api/link_api.cpp
+38 −5 src/core/border_router/routing_manager.cpp
+9 −2 src/core/border_router/routing_manager.hpp
+0 −21 src/core/coap/coap.cpp
+2 −9 src/core/coap/coap.hpp
+14 −2 src/core/common/frame_builder.cpp
+34 −2 src/core/common/frame_builder.hpp
+65 −0 src/core/common/message.hpp
+9 −0 src/core/config/misc.h
+13 −11 src/core/mac/data_poll_sender.cpp
+39 −15 src/core/mac/mac.cpp
+20 −0 src/core/mac/mac.hpp
+53 −53 src/core/mac/mac_frame.cpp
+39 −25 src/core/mac/mac_frame.hpp
+2 −2 src/core/meshcop/border_agent.cpp
+18 −0 src/core/meshcop/dataset.cpp
+5 −0 src/core/meshcop/dataset.hpp
+20 −1 src/core/meshcop/dataset_manager.cpp
+8 −0 src/core/meshcop/dataset_manager_ftd.cpp
+0 −8 src/core/meshcop/joiner_router.cpp
+1 −4 src/core/meshcop/joiner_router.hpp
+6 −0 src/core/meshcop/meshcop_tlvs.hpp
+8 −0 src/core/meshcop/secure_transport.hpp
+168 −16 src/core/meshcop/tcat_agent.cpp
+39 −8 src/core/meshcop/tcat_agent.hpp
+1 −1 src/core/net/dns_client.cpp
+0 −12 src/core/net/dnssd_server.cpp
+1 −5 src/core/net/dnssd_server.hpp
+0 −12 src/core/net/ip6_mpl.cpp
+2 −6 src/core/net/ip6_mpl.hpp
+4 −0 src/core/net/nd6.cpp
+4 −0 src/core/net/nd6.hpp
+1 −10 src/core/net/sntp_client.hpp
+15 −0 src/core/radio/ble_secure.hpp
+13 −0 src/core/radio/radio_platform.cpp
+34 −39 src/core/thread/mesh_forwarder.cpp
+1 −7 src/core/thread/mesh_forwarder.hpp
+7 −4 src/core/thread/mesh_forwarder_ftd.cpp
+0 −10 src/core/thread/mle.cpp
+1 −5 src/core/thread/mle.hpp
+1 −0 src/core/thread/mle_tlvs.hpp
+1 −0 src/lib/spinel/spinel.c
+19 −0 src/lib/spinel/spinel.h
+1 −1 src/ncp/ncp_base.hpp
+8 −1 src/ncp/ncp_base_dispatcher.cpp
+22 −2 src/ncp/ncp_base_ftd.cpp
+20 −0 src/ncp/ncp_base_mtd.cpp
+2 −2 src/ncp/platform/infra_if.cpp
+5 −4 src/posix/platform/netif.cpp
+31 −0 tests/scripts/expect/_common.exp
+2 −1 tests/scripts/expect/cli-tcat-advertisement.exp
+4 −8 tests/scripts/expect/cli-tcat-decommission.exp
+83 −0 tests/scripts/expect/cli-tcat-hashes.exp
+4 −9 tests/scripts/expect/cli-tcat.exp
+124 −0 tests/scripts/thread-cert/border_router/test_dhcp6pd.py
+41 −0 tests/scripts/thread-cert/node.py
+2 −0 tests/toranj/openthread-core-toranj-config.h
+110 −0 tests/unit/test_dns_client.cpp
+31 −27 tests/unit/test_mac_frame.cpp
+9 −1 tests/unit/test_routing_manager.cpp
+7 −0 tools/otci/otci/otci.py
+2 −4 tools/tcat_ble_client/bbtc.py
+23 −0 tools/tcat_ble_client/ble/ble_stream_secure.py
+131 −16 tools/tcat_ble_client/cli/base_commands.py
+5 −2 tools/tcat_ble_client/cli/cli.py
+5 −0 tools/tcat_ble_client/tlv/tcat_tlv.py

0 comments on commit 87555d1

Please sign in to comment.