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

Bump third_party/openthread/repo from 8bc2504 to f7690fe #27984

Merged
Merged
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 third_party/openthread/repo
Submodule repo updated 60 files
+1 −0 .github/workflows/build.yml
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/scorecards.yml
+1 −0 etc/cmake/options.cmake
+6 −0 include/openthread/border_agent.h
+1 −1 include/openthread/instance.h
+189 −6 include/openthread/mesh_diag.h
+1 −0 include/openthread/netdata.h
+31 −0 include/openthread/netdiag.h
+87 −122 include/openthread/srp_server.h
+57 −0 include/openthread/thread.h
+179 −1 src/cli/README.md
+3 −0 src/cli/README_NETDATA.md
+446 −9 src/cli/cli.cpp
+18 −0 src/cli/cli.hpp
+5 −0 src/cli/cli_network_data.cpp
+17 −19 src/cli/cli_srp_server.cpp
+1 −0 src/core/BUILD.gn
+1 −0 src/core/CMakeLists.txt
+24 −0 src/core/api/mesh_diag_api.cpp
+36 −17 src/core/api/srp_server_api.cpp
+20 −0 src/core/api/thread_api.cpp
+67 −29 src/core/border_router/routing_manager.cpp
+15 −9 src/core/border_router/routing_manager.hpp
+11 −9 src/core/common/time.hpp
+8 −1 src/core/common/tlvs.cpp
+37 −0 src/core/common/tlvs.hpp
+52 −0 src/core/config/mesh_forwarder.h
+8 −27 src/core/meshcop/commissioner.cpp
+0 −2 src/core/meshcop/commissioner.hpp
+39 −41 src/core/net/dnssd_server.cpp
+9 −12 src/core/net/dnssd_server.hpp
+252 −438 src/core/net/srp_server.cpp
+94 −160 src/core/net/srp_server.hpp
+30 −0 src/core/thread/mesh_forwarder.cpp
+71 −0 src/core/thread/mesh_forwarder.hpp
+49 −41 src/core/thread/mle.cpp
+1 −0 src/core/thread/mle.hpp
+5 −0 src/core/thread/mle_router.cpp
+10 −0 src/core/thread/network_data_tlvs.hpp
+6 −0 src/core/thread/network_data_types.cpp
+401 −15 src/core/thread/network_diagnostic.cpp
+65 −2 src/core/thread/network_diagnostic.hpp
+152 −0 src/core/thread/network_diagnostic_tlvs.cpp
+500 −22 src/core/thread/network_diagnostic_tlvs.hpp
+390 −53 src/core/utils/mesh_diag.cpp
+135 −11 src/core/utils/mesh_diag.hpp
+1 −1 src/lib/spinel/radio_spinel_impl.hpp
+9 −9 tests/scripts/thread-cert/Cert_5_7_02_CoapDiagCommands.py
+4 −4 tests/scripts/thread-cert/Cert_5_7_03_CoapDiagCommands.py
+24 −0 tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py
+9 −9 tests/toranj/cli/test-021-br-route-prf.py
+164 −0 tests/toranj/cli/test-023-mesh-diag.py
+0 −24 tests/toranj/openthread-core-toranj-config-posix.h
+2 −50 tests/toranj/openthread-core-toranj-config-simulation.h
+4 −471 tests/toranj/openthread-core-toranj-config.h
+1 −0 tests/toranj/start.sh
+2 −0 tests/unit/test_network_data.cpp
+70 −61 tests/unit/test_routing_manager.cpp
+11 −4 tests/unit/test_timer.cpp
Loading