Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

submodule: bump openthread from e6a6b9f to a7e058f #844

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading