Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 9, 2024
1 parent 542b297 commit b163347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 85 files
+2 −2 .github/workflows/simulation-1.2.yml
+3 −0 doc/ot_api_doc.h
+1 −0 doc/ot_config_doc.h
+2 −0 etc/cmake/options.cmake
+2 −0 examples/config/ot-core-config-check-size-br.h
+1 −0 examples/platforms/simulation/CMakeLists.txt
+569 −0 examples/platforms/simulation/mdns_socket.c
+13 −0 examples/platforms/simulation/platform-config.h
+22 −0 examples/platforms/simulation/platform-simulation.h
+6 −0 examples/platforms/simulation/system.c
+1 −1 examples/platforms/utils/mac_frame.cpp
+3 −0 include/openthread/BUILD.gn
+1 −1 include/openthread/instance.h
+747 −0 include/openthread/mdns.h
+173 −0 include/openthread/platform/mdns_socket.h
+101 −0 include/openthread/verhoeff_checksum.h
+2 −0 src/cli/BUILD.gn
+1 −0 src/cli/CMakeLists.txt
+30 −0 src/cli/README.md
+65 −0 src/cli/cli.cpp
+7 −0 src/cli/cli.hpp
+776 −0 src/cli/cli_mdns.cpp
+142 −0 src/cli/cli_mdns.hpp
+7 −0 src/core/BUILD.gn
+4 −0 src/core/CMakeLists.txt
+188 −0 src/core/api/mdns_api.cpp
+60 −0 src/core/api/verhoeff_checksum_api.cpp
+10 −0 src/core/common/log.cpp
+20 −0 src/core/common/log.hpp
+100 −0 src/core/config/mdns.h
+10 −0 src/core/config/misc.h
+16 −0 src/core/instance/instance.cpp
+29 −0 src/core/instance/instance.hpp
+8 −18 src/core/meshcop/border_agent.cpp
+0 −6 src/core/meshcop/border_agent.hpp
+9 −4 src/core/meshcop/commissioner.cpp
+5 −1 src/core/meshcop/dataset_manager.cpp
+3 −3 src/core/meshcop/joiner.cpp
+1 −1 src/core/meshcop/joiner_router.cpp
+0 −10 src/core/meshcop/meshcop.cpp
+0 −16 src/core/meshcop/meshcop.hpp
+3 −3 src/core/meshcop/meshcop_leader.cpp
+1 −11 src/core/meshcop/tcat_agent.cpp
+0 −6 src/core/meshcop/tcat_agent.hpp
+1 −1 src/core/net/dhcp6_client.cpp
+2 −5 src/core/net/dhcp6_server.cpp
+31 −0 src/core/net/dns_types.cpp
+99 −0 src/core/net/dns_types.hpp
+1 −1 src/core/net/dnssd_server.cpp
+4 −11 src/core/net/ip6.cpp
+6,011 −0 src/core/net/mdns.cpp
+1,812 −0 src/core/net/mdns.hpp
+1 −1 src/core/net/sntp_client.cpp
+12 −21 src/core/net/srp_server.cpp
+0 −6 src/core/net/srp_server.hpp
+1 −0 src/core/openthread-core-config.h
+2 −2 src/core/thread/dua_manager.cpp
+1 −1 src/core/thread/energy_scan_server.cpp
+41 −25 src/core/thread/mle.cpp
+7 −3 src/core/thread/mle.hpp
+0 −14 src/core/thread/mle_router.cpp
+0 −3 src/core/thread/mle_router.hpp
+1 −4 src/core/thread/network_data_leader_ftd.cpp
+59 −41 src/core/thread/network_data_publisher.cpp
+4 −1 src/core/thread/network_data_publisher.hpp
+1 −1 src/core/thread/panid_query_server.cpp
+3 −6 src/core/utils/channel_manager.cpp
+4 −12 src/core/utils/otns.cpp
+149 −0 src/core/utils/verhoeff_checksum.cpp
+99 −0 src/core/utils/verhoeff_checksum.hpp
+42 −0 src/lib/spinel/radio_spinel.cpp
+4 −0 src/lib/spinel/radio_spinel.hpp
+1 −0 src/posix/platform/CMakeLists.txt
+710 −0 src/posix/platform/mdns_socket.cpp
+181 −0 src/posix/platform/mdns_socket.hpp
+16 −0 src/posix/platform/system.cpp
+63 −19 tests/scripts/thread-cert/test_netdata_publisher.py
+3 −1 tests/toranj/openthread-core-toranj-config-posix.h
+2 −1 tests/toranj/openthread-core-toranj-config-simulation.h
+4 −0 tests/toranj/openthread-core-toranj-config.h
+21 −0 tests/unit/CMakeLists.txt
+62 −0 tests/unit/test_checksum.cpp
+6,841 −0 tests/unit/test_mdns.cpp
+29 −0 tests/unit/test_platform.cpp
+1 −0 tests/unit/test_platform.h

0 comments on commit b163347

Please sign in to comment.