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 d81c6fa to f1e74a0 including QPG fix #31441

Merged
merged 2 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
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 examples/platform/qpg/project_include/OpenThreadConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#define OPENTHREAD_CONFIG_TCP_ENABLE 0
#define OPENTHREAD_CONFIG_BLE_TCAT_ENABLE 0
#define OPENTHREAD_CONFIG_TLS_ENABLE 0
#define OPENTHREAD_CONFIG_DTLS_ENABLE 0
#define OPENTHREAD_CONFIG_SECURE_TRANSPORT_ENABLE 0

#define OPENTHREAD_ENABLE_VENDOR_EXTENSION 0
#define OPENTHREAD_EXAMPLES_SIMULATION 0
Expand Down
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 46 files
+14 −12 .github/workflows/otbr.yml
+9 −7 .github/workflows/otns.yml
+12 −10 .github/workflows/posix.yml
+16 −14 .github/workflows/simulation-1.1.yml
+16 −14 .github/workflows/simulation-1.2.yml
+4 −2 .github/workflows/toranj.yml
+4 −2 .github/workflows/unit.yml
+1 −1 README.md
+ doc/images/ot-contrib-aqara.png
+1 −1 include/openthread/coap.h
+1 −1 include/openthread/dns_client.h
+1 −1 include/openthread/instance.h
+1 −1 include/openthread/tcp.h
+1 −1 include/openthread/thread.h
+2 −0 src/cli/BUILD.gn
+1 −0 src/cli/CMakeLists.txt
+32 −0 src/cli/README_BR.md
+4 −202 src/cli/cli.cpp
+5 −14 src/cli/cli.hpp
+63 −0 src/cli/cli_br.cpp
+10 −0 src/cli/cli_config.h
+256 −0 src/cli/cli_ping.cpp
+99 −0 src/cli/cli_ping.hpp
+3 −2 src/core/config/ip6.h
+10 −0 src/core/config/misc.h
+1 −1 src/core/config/secure_transport.h
+1 −1 src/core/config/srp_client.h
+6 −9 src/core/net/srp_client.cpp
+3 −0 src/ncp/ncp_base_mtd.cpp
+1 −1 src/posix/platform/netif.cpp
+1 −0 tests/scripts/thread-cert/border_router/test_plat_udp_accessiblity.py
+1 −1 tests/scripts/thread-cert/node.py
+0 −4 tests/scripts/thread-cert/test_dnssd.py
+1 −3 tests/scripts/thread-cert/test_srp_auto_host_address.py
+1 −3 tests/scripts/thread-cert/test_srp_auto_start_mode.py
+2 −2 tests/scripts/thread-cert/test_srp_client_change_lease.py
+0 −2 tests/scripts/thread-cert/test_srp_client_save_server_info.py
+4 −4 tests/scripts/thread-cert/test_srp_lease.py
+9 −7 tests/scripts/thread-cert/test_srp_name_conflicts.py
+1 −3 tests/scripts/thread-cert/test_srp_register_500_services.py
+2 −1 tests/scripts/thread-cert/test_srp_register_single_service.py
+1 −3 tests/scripts/thread-cert/test_srp_server_reboot_port.py
+2 −1 tests/scripts/thread-cert/test_srp_ttl.py
+1 −2 tests/toranj/cli/test-400-srp-client-server.py
+30 −29 tests/unit/test_routing_manager.cpp
+0 −2 tools/otci/tests/test_otci.py
Loading