Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 20, 2024
1 parent 85fb634 commit f8c1359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 86 files
+1 −1 .github/workflows/docker.yml
+3 −3 .github/workflows/otns.yml
+4 −4 examples/platforms/simulation/alarm.c
+3 −2 examples/platforms/simulation/ble.c
+3 −2 examples/platforms/simulation/infra_if.c
+39 −49 examples/platforms/simulation/mdns_socket.c
+2 −1 examples/platforms/simulation/radio.c
+45 −33 examples/platforms/simulation/simul_utils.c
+2 −1 examples/platforms/simulation/trel.c
+7 −6 examples/platforms/simulation/uart.c
+8 −7 examples/platforms/simulation/virtual_time/platform-sim.c
+1 −1 include/openthread/instance.h
+41 −0 include/openthread/thread.h
+12 −0 src/cli/README.md
+39 −1 src/cli/cli.cpp
+5 −0 src/cli/cli.hpp
+2 −0 src/core/BUILD.gn
+1 −0 src/core/CMakeLists.txt
+13 −0 src/core/api/thread_api.cpp
+2 −3 src/core/coap/coap.cpp
+39 −39 src/core/coap/coap_secure.cpp
+105 −92 src/core/coap/coap_secure.hpp
+13 −0 src/core/common/callback.hpp
+9 −9 src/core/common/message.hpp
+10 −34 src/core/common/notifier.cpp
+22 −16 src/core/common/notifier.hpp
+8 −0 src/core/common/timer.cpp
+15 −0 src/core/common/timer.hpp
+0 −9 src/core/config/mle.h
+4 −0 src/core/config/openthread-core-config-check.h
+62 −11 src/core/config/parent_search.h
+26 −0 src/core/config/wakeup.h
+1 −1 src/core/instance/instance.cpp
+7 −2 src/core/instance/instance.hpp
+52 −1 src/core/mac/mac.cpp
+10 −0 src/core/mac/mac.hpp
+7 −0 src/core/mac/mac_frame.cpp
+11 −1 src/core/mac/sub_mac.cpp
+170 −0 src/core/mac/wakeup_tx_scheduler.cpp
+132 −0 src/core/mac/wakeup_tx_scheduler.hpp
+1 −1 src/core/meshcop/joiner_router.cpp
+233 −302 src/core/meshcop/secure_transport.cpp
+91 −111 src/core/meshcop/secure_transport.hpp
+1 −1 src/core/net/icmp6.cpp
+182 −25 src/core/net/mdns.cpp
+30 −12 src/core/net/mdns.hpp
+5 −0 src/core/net/socket.cpp
+10 −0 src/core/net/socket.hpp
+1 −2 src/core/net/srp_server.cpp
+1 −1 src/core/radio/ble_secure.cpp
+3 −0 src/core/radio/radio_callbacks.cpp
+0 −2 src/core/thread/child.hpp
+2 −2 src/core/thread/child_supervision.cpp
+446 −163 src/core/thread/mle.cpp
+158 −51 src/core/thread/mle.hpp
+196 −162 src/core/thread/mle_router.cpp
+11 −23 src/core/thread/mle_router.hpp
+9 −0 src/core/thread/mle_types.hpp
+18 −21 src/core/thread/neighbor.hpp
+82 −5 src/core/thread/router.hpp
+1 −1 src/core/thread/tmf.cpp
+1 −1 src/core/thread/tmf.hpp
+14 −0 src/lib/spinel/radio_spinel.cpp
+16 −0 src/lib/spinel/radio_spinel.hpp
+4 −0 src/lib/spinel/spinel.c
+82 −11 src/lib/spinel/spinel.h
+26 −0 src/ncp/ncp_base.cpp
+95 −0 src/ncp/ncp_base.hpp
+2 −0 src/ncp/ncp_base_dispatcher.cpp
+122 −0 src/ncp/ncp_base_ftd.cpp
+18 −18 src/ncp/platform/dnssd.cpp
+9 −0 src/posix/platform/openthread-core-posix-config.h
+40 −13 tests/gtest/fake_platform.cpp
+32 −3 tests/gtest/fake_platform.hpp
+28 −0 tests/gtest/radio_spinel_rcp_test.cpp
+15 −0 tests/toranj/cli/cli.py
+172 −0 tests/toranj/cli/test-034-fed-parent-search.py
+4 −0 tests/toranj/openthread-core-toranj-config.h
+1 −0 tests/toranj/start.sh
+2 −0 tests/unit/test_dns_client.cpp
+153 −0 tests/unit/test_mdns.cpp
+1 −1 tests/unit/test_message.cpp
+98 −0 tests/unit/test_ncp_dnssd.cpp
+62 −10 tools/cp-caps/README.md
+156 −23 tools/cp-caps/rcp_caps_test.py
+4 −3 tools/otci/otci/otci.py

0 comments on commit f8c1359

Please sign in to comment.