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 eaa2779 to b200c96 #128

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
Bump third_party/openthread/repo from eaa2779 to b200c96
Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `eaa2779` to `b200c96`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@eaa2779...b200c96)

---
updated-dependencies:
- dependency-name: third_party/openthread/repo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored May 15, 2023
commit 51ef2c169deabff1aa3b71e590d7bbd5d1296546
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 73 files
+41 −2 .github/workflows/build.yml
+1 −1 .github/workflows/otbr.yml
+1 −1 .github/workflows/posix.yml
+1 −1 .github/workflows/simulation-1.1.yml
+1 −1 .github/workflows/simulation-1.2.yml
+1 −1 .github/workflows/toranj.yml
+1 −1 .github/workflows/unit.yml
+1 −0 CMakeLists.txt
+2 −2 etc/cmake/options.cmake
+0 −1 examples/README.md
+1 −1 include/openthread/instance.h
+36 −0 include/openthread/netdata_publisher.h
+5 −0 include/openthread/platform/alarm-micro.h
+5 −0 include/openthread/platform/alarm-milli.h
+24 −1 include/openthread/thread.h
+2 −1 include/openthread/thread_ftd.h
+58 −3 script/cmake-build
+37 −0 src/cli/README.md
+15 −0 src/cli/README_NETDATA.md
+78 −0 src/cli/cli.cpp
+23 −0 src/cli/cli_network_data.cpp
+2 −2 src/core/api/instance_api.cpp
+2 −3 src/core/api/ip6_api.cpp
+8 −0 src/core/api/netdata_publisher_api.cpp
+10 −0 src/core/api/thread_api.cpp
+1 −0 src/core/backbone_router/backbone_tmf.cpp
+45 −10 src/core/border_router/routing_manager.cpp
+9 −0 src/core/border_router/routing_manager.hpp
+1 −1 src/core/common/log.cpp
+4 −3 src/core/common/settings.hpp
+26 −0 src/core/common/string.cpp
+40 −1 src/core/common/string.hpp
+8 −3 src/core/common/uptime.cpp
+29 −4 src/core/common/uptime.hpp
+1 −1 src/core/config/misc.h
+4 −0 src/core/config/openthread-core-config-check.h
+1 −3 src/core/ftd.cmake
+1 −1 src/core/mac/mac.hpp
+1 −3 src/core/meshcop/border_agent.cpp
+1 −4 src/core/meshcop/border_agent.hpp
+1 −1 src/core/meshcop/dataset.cpp
+1 −1 src/core/meshcop/dtls.cpp
+2 −8 src/core/meshcop/network_name.cpp
+3 −3 src/core/meshcop/network_name.hpp
+1 −3 src/core/mtd.cmake
+1 −1 src/core/net/dhcp6_client.cpp
+1 −1 src/core/net/dhcp6_server.cpp
+3 −3 src/core/net/dns_client.cpp
+1 −1 src/core/net/dnssd_server.cpp
+1 −1 src/core/net/icmp6.cpp
+1 −3 src/core/net/icmp6.hpp
+13 −46 src/core/net/ip4_types.cpp
+20 −33 src/core/net/ip6.cpp
+22 −14 src/core/net/ip6.hpp
+6 −14 src/core/net/ip6_address.cpp
+1 −1 src/core/net/srp_client.cpp
+3 −3 src/core/net/srp_server.cpp
+8 −0 src/core/net/udp6.cpp
+38 −2 src/core/net/udp6.hpp
+10 −4 src/core/thread/network_data_publisher.hpp
+31 −2 src/core/thread/topology.cpp
+15 −1 src/core/thread/topology.hpp
+1 −1 src/core/utils/ping_sender.cpp
+5 −1 src/posix/platform/CMakeLists.txt
+2 −0 src/posix/platform/radio.cpp
+8 −0 src/posix/platform/radio.hpp
+4 −0 tests/scripts/thread-cert/node.py
+13 −0 tests/scripts/thread-cert/test_netdata_publisher.py
+7 −0 tests/unit/CMakeLists.txt
+1 −0 tests/unit/test_ip_address.cpp
+42 −42 tests/unit/test_routing_manager.cpp
+58 −0 tests/unit/test_string.cpp
+1 −3 third_party/CMakeLists.txt