Skip to content

Commit

Permalink
Bump third_party/openthread/repo from d2d9aff to 922cf5a (#25744)
Browse files Browse the repository at this point in the history
Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `d2d9aff` to `922cf5a`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@d2d9aff...922cf5a)

---
updated-dependencies:
- dependency-name: third_party/openthread/repo
  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
dependabot[bot] authored and pull[bot] committed Sep 20, 2023
1 parent 6f68252 commit 1137376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 81 files
+1 −1 .github/workflows/docker.yml
+13 −13 .github/workflows/otns.yml
+1 −0 .github/workflows/posix.yml
+3 −1 CMakeLists.txt
+2 −2 etc/cmake/options.cmake
+1 −1 examples/README.md
+4 −2 examples/common-switches.mk
+28 −1 include/openthread/dataset.h
+19 −5 include/openthread/dns_client.h
+1 −1 include/openthread/instance.h
+10 −0 include/openthread/mesh_diag.h
+66 −6 include/openthread/netdata.h
+2 −0 include/openthread/netdiag.h
+21 −0 include/openthread/platform/radio.h
+5 −5 include/openthread/tcp.h
+4 −1 script/cmake-build
+1 −1 script/make-pretty
+27 −20 src/cli/README.md
+30 −2 src/cli/README_DATASET.md
+87 −2 src/cli/README_NETDATA.md
+78 −22 src/cli/cli.cpp
+221 −136 src/cli/cli_dataset.cpp
+2 −2 src/cli/cli_dataset.hpp
+123 −2 src/cli/cli_network_data.cpp
+1 −0 src/cli/cli_network_data.hpp
+2 −0 src/core/BUILD.gn
+29 −0 src/core/api/dataset_api.cpp
+25 −0 src/core/api/netdata_api.cpp
+21 −0 src/core/config/dns_client.h
+11 −0 src/core/config/mac.h
+3 −2 src/core/mac/mac.hpp
+30 −8 src/core/mac/mac_frame.hpp
+39 −0 src/core/mac/sub_mac.cpp
+322 −11 src/core/net/dns_client.cpp
+80 −6 src/core/net/dns_client.hpp
+6 −6 src/core/net/srp_server.cpp
+1 −0 src/core/openthread-core-config.h
+5 −0 src/core/thread/csl_tx_scheduler.cpp
+1 −0 src/core/thread/mesh_forwarder.cpp
+41 −50 src/core/thread/mle.cpp
+31 −1 src/core/thread/mle.hpp
+73 −111 src/core/thread/mle_router.cpp
+3 −2 src/core/thread/mle_router.hpp
+55 −0 src/core/thread/mle_tlvs.cpp
+20 −11 src/core/thread/mle_tlvs.hpp
+47 −3 src/core/thread/network_data.cpp
+13 −0 src/core/thread/network_data.hpp
+9 −3 src/core/thread/network_data_leader.cpp
+21 −0 src/core/thread/network_data_leader.hpp
+98 −86 src/core/thread/network_data_leader_ftd.cpp
+57 −18 src/core/thread/network_data_leader_ftd.hpp
+8 −0 src/core/thread/network_data_types.cpp
+24 −0 src/core/thread/network_data_types.hpp
+9 −0 src/core/thread/network_diagnostic.cpp
+7 −0 src/core/thread/network_diagnostic_tlvs.hpp
+6 −0 src/core/thread/router_table.cpp
+13 −0 src/core/thread/router_table.hpp
+5 −3 src/core/thread/topology.hpp
+4 −3 src/core/thread/version.hpp
+19 −5 src/core/utils/mesh_diag.cpp
+3 −2 src/core/utils/mesh_diag.hpp
+13 −11 src/lib/spinel/radio_spinel_impl.hpp
+15 −7 src/lib/spinel/spinel.h
+19 −12 src/ncp/ncp_base_radio.cpp
+1 −1 src/posix/Makefile-posix
+0 −0 tests/fuzz/ot_fuzz_framework.cpp
+0 −0 tests/fuzz/ot_fuzz_framework.h
+4 −1 tests/scripts/expect/cli-tcp-tls.exp
+4 −1 tests/scripts/expect/cli-tcp.exp
+46 −0 tests/scripts/expect/tun-dns-over-tcp-client.exp
+4 −2 tests/scripts/thread-cert/node.py
+4 −0 tests/scripts/thread-cert/pktverify/consts.py
+1 −1 tests/scripts/thread-cert/pktverify/layer_fields.py
+5 −5 tests/scripts/thread-cert/v1_2_LowPower_7_1_01_SingleProbeLinkMetricsWithEnhancedAcks.py
+388 −0 tests/scripts/thread-cert/v1_2_LowPower_7_1_02_SingleProbeLinkMetricsWithoutEnhancedAck.py
+6 −6 tests/scripts/thread-cert/v1_2_LowPower_7_2_01_ForwardTrackingSeries.py
+7 −1 tests/toranj/cli/cli.py
+369 −0 tests/toranj/cli/test-019-netdata-context-id.py
+1 −0 tests/toranj/start.sh
+4 −1 tools/harness-thci/OpenThread.py
+10 −1 tools/otci/otci/otci.py

0 comments on commit 1137376

Please sign in to comment.