Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Apr 10, 2024
1 parent 54d22cb commit c0b7044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 48 files
+2 −0 doc/ot_api_doc.h
+1 −0 doc/ot_config_doc.h
+1 −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
+2 −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
+2 −0 src/cli/BUILD.gn
+1 −0 src/cli/CMakeLists.txt
+10 −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
+4 −0 src/core/BUILD.gn
+2 −0 src/core/CMakeLists.txt
+188 −0 src/core/api/mdns_api.cpp
+1 −1 src/core/coap/coap_message.cpp
+2 −0 src/core/common/message.cpp
+11 −0 src/core/common/message.hpp
+100 −0 src/core/config/mdns.h
+3 −0 src/core/instance/instance.cpp
+9 −0 src/core/instance/instance.hpp
+2 −1 src/core/meshcop/dataset.cpp
+31 −0 src/core/net/dns_types.cpp
+99 −0 src/core/net/dns_types.hpp
+1 −4 src/core/net/dnssd_server.cpp
+1 −4 src/core/net/ip6_mpl.cpp
+6,011 −0 src/core/net/mdns.cpp
+1,812 −0 src/core/net/mdns.hpp
+1 −0 src/core/openthread-core-config.h
+3 −6 src/core/thread/mle.cpp
+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
+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
+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 c0b7044

Please sign in to comment.