Skip to content

Commit

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

---
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 Feb 5, 2024
1 parent eb69e84 commit 3885812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 82 files
+3 −3 .github/workflows/otns.yml
+75 −0 .github/workflows/unit.yml
+1 −4 CMakeLists.txt
+0 −1 configure.ac
+0 −1 etc/cmake/options.cmake
+0 −1 examples/Makefile-simulation
+0 −1 examples/README.md
+0 −5 examples/common-switches.mk
+1 −1 include/openthread/instance.h
+0 −85 include/openthread/ncp.h
+12 −0 include/openthread/thread_ftd.h
+1 −1 script/check-scan-build
+0 −2 script/check-simulation-build-autotools
+0 −1 script/cmake-build
+0 −1 script/make-pretty
+1 −0 script/package
+248 −25 src/cli/cli.cpp
+0 −4 src/core/BUILD.gn
+5 −0 src/core/api/thread_ftd_api.cpp
+2 −0 src/core/coap/coap.cpp
+0 −10 src/core/config/misc.h
+4 −0 src/core/config/openthread-core-config-check.h
+1 −1 src/core/mac/mac.cpp
+56 −84 src/core/net/ip6.cpp
+58 −5 src/core/net/ip6_headers.cpp
+87 −50 src/core/net/ip6_headers.hpp
+28 −12 src/core/net/ip6_mpl.cpp
+11 −22 src/core/net/ip6_mpl.hpp
+14 −46 src/core/thread/lowpan.cpp
+26 −0 src/core/thread/mle.cpp
+6 −1 src/core/thread/mle.hpp
+21 −2 src/core/thread/mle_router.cpp
+4 −0 src/core/thread/mle_router.hpp
+7 −0 src/core/thread/mle_types.hpp
+24 −26 src/core/thread/router_table.cpp
+8 −10 src/core/thread/router_table.hpp
+10 −0 src/lib/spinel/CMakeLists.txt
+0 −12 src/lib/spinel/Makefile.am
+0 −4 src/lib/spinel/spinel.c
+13 −5 src/lib/spinel/spinel.h
+13 −0 src/lib/url/CMakeLists.txt
+0 −17 src/lib/url/Makefile.am
+0 −4 src/ncp/changed_props_set.cpp
+0 −11 src/ncp/ncp_base.cpp
+0 −44 src/ncp/ncp_base.hpp
+0 −7 src/ncp/ncp_base_dispatcher.cpp
+1 −165 src/ncp/ncp_base_mtd.cpp
+0 −1 src/posix/Makefile-posix
+15 −0 src/posix/platform/CMakeLists.txt
+0 −19 src/posix/platform/Makefile.am
+2 −4 tests/CMakeLists.txt
+0 −5 tests/Makefile.am
+1 −1 tests/scripts/expect/_common.exp
+1 −1 tests/scripts/thread-cert/Cert_5_3_06_RouterIdMask.py
+1 −1 tests/scripts/thread-cert/Cert_5_5_02_LeaderReboot.py
+1 −1 tests/scripts/thread-cert/Cert_5_5_03_SplitMergeChildren.py
+1 −1 tests/scripts/thread-cert/Cert_5_5_04_SplitMergeRouters.py
+1 −1 tests/scripts/thread-cert/Cert_5_5_07_SplitMergeThreeWay.py
+1 −1 tests/scripts/thread-cert/Cert_7_1_06_BorderRouterAsLeader.py
+1 −1 tests/scripts/thread-cert/Cert_9_2_15_PendingPartition.py
+1 −1 tests/scripts/thread-cert/Cert_9_2_16_ActivePendingPartition.py
+8 −0 tests/scripts/thread-cert/config.py
+5 −2 tests/scripts/thread-cert/test_detach.py
+1 −1 tests/scripts/thread-cert/test_history_tracker.py
+155 −0 tests/scripts/thread-cert/test_leader_reboot_multiple_link_request.py
+176 −0 tests/scripts/thread-cert/test_router_reboot_multiple_link_request.py
+1 −1 tests/scripts/thread-cert/test_set_mliid.py
+2 −2 tests/scripts/thread-cert/v1_2_test_backbone_router_service.py
+2 −2 tests/scripts/thread-cert/v1_2_test_csl_transmission.py
+1 −0 tests/scripts/thread-cert/v1_2_test_multicast_listener_registration.py
+1 −1 tests/toranj/ncp/test-017-parent-reset-child-recovery.py
+2 −1 tests/toranj/ncp/test-027-child-mode-change.py
+1 −1 tests/toranj/ncp/test-600-channel-manager-properties.py
+0 −8 tests/toranj/openthread-core-toranj-config.h
+96 −0 tests/unit/CMakeLists.txt
+0 −404 tests/unit/Makefile.am
+3 −0 tests/unit/test_binary_search.cpp
+60 −0 tests/unit/test_platform.cpp
+12 −6 tests/unit/test_routing_manager.cpp
+6 −6 tests/unit/test_spinel_encoder.cpp
+11 −3 tests/unit/test_srp_server.cpp
+3 −0 tests/unit/test_string.cpp

0 comments on commit 3885812

Please sign in to comment.