Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 21, 2023
1 parent 0edf2d3 commit 5e67eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 88 files
+1 −1 .github/workflows/fuzz.yml
+6 −6 .github/workflows/otbr.yml
+6 −6 .github/workflows/otns.yml
+9 −9 .github/workflows/posix.yml
+1 −1 .github/workflows/scorecards.yml
+13 −13 .github/workflows/simulation-1.1.yml
+13 −13 .github/workflows/simulation-1.2.yml
+1 −1 .github/workflows/toranj.yml
+1 −1 .github/workflows/unit.yml
+11 −0 examples/apps/cli/main.c
+11 −0 examples/apps/ncp/main.c
+38 −8 include/openthread/border_routing.h
+1 −1 include/openthread/instance.h
+22 −0 include/openthread/message.h
+38 −2 src/cli/README_BR.md
+63 −8 src/cli/cli_br.cpp
+3 −0 src/cli/cli_br.hpp
+375 −0 src/cli/cli_srp_client.cpp
+10 −0 src/core/api/border_routing_api.cpp
+7 −0 src/core/api/message_api.cpp
+133 −28 src/core/border_router/routing_manager.cpp
+37 −6 src/core/border_router/routing_manager.hpp
+3 −3 src/core/coap/coap_message.cpp
+2 −4 src/core/coap/coap_message.hpp
+1 −2 src/core/common/encoding.hpp
+4 −10 src/core/common/frame_builder.cpp
+4 −4 src/core/common/frame_data.cpp
+24 −24 src/core/common/settings.hpp
+2 −2 src/core/common/tlvs.cpp
+2 −4 src/core/common/tlvs.hpp
+1 −1 src/core/crypto/aes_ccm.cpp
+13 −18 src/core/mac/mac_frame.cpp
+14 −17 src/core/mac/mac_frame.hpp
+2 −2 src/core/meshcop/dataset.hpp
+1 −1 src/core/meshcop/meshcop.cpp
+1 −1 src/core/meshcop/meshcop_tlvs.cpp
+34 −35 src/core/meshcop/meshcop_tlvs.hpp
+9 −11 src/core/meshcop/timestamp.hpp
+1 −1 src/core/net/checksum.cpp
+35 −29 src/core/net/dhcp6.hpp
+3 −8 src/core/net/dns_client.cpp
+10 −13 src/core/net/dns_dso.hpp
+2 −4 src/core/net/dns_types.cpp
+50 −50 src/core/net/dns_types.hpp
+6 −8 src/core/net/icmp6.hpp
+1 −1 src/core/net/ip4_types.cpp
+12 −15 src/core/net/ip4_types.hpp
+2 −2 src/core/net/ip6.cpp
+0 −3 src/core/net/ip6.hpp
+18 −15 src/core/net/ip6_address.cpp
+4 −6 src/core/net/ip6_address.hpp
+21 −21 src/core/net/ip6_headers.hpp
+2 −2 src/core/net/ip6_mpl.hpp
+20 −12 src/core/net/nd6.hpp
+52 −24 src/core/net/sntp_client.hpp
+16 −19 src/core/net/tcp6.cpp
+8 −8 src/core/net/tcp6.hpp
+8 −8 src/core/net/udp6.hpp
+1 −1 src/core/radio/trel_link.cpp
+4 −4 src/core/radio/trel_packet.hpp
+2 −2 src/core/thread/key_manager.cpp
+2 −4 src/core/thread/link_metrics_tlvs.hpp
+10 −13 src/core/thread/lowpan.cpp
+4 −6 src/core/thread/lowpan.hpp
+4 −6 src/core/thread/mle.cpp
+4 −4 src/core/thread/mle.hpp
+11 −14 src/core/thread/mle_tlvs.hpp
+2 −2 src/core/thread/mlr_manager.cpp
+1 −1 src/core/thread/network_data_leader.cpp
+1 −1 src/core/thread/network_data_service.cpp
+8 −11 src/core/thread/network_data_service.hpp
+1 −1 src/core/thread/network_data_tlvs.cpp
+17 −20 src/core/thread/network_data_tlvs.hpp
+46 −50 src/core/thread/network_diagnostic_tlvs.cpp
+40 −43 src/core/thread/network_diagnostic_tlvs.hpp
+0 −3 src/core/thread/thread_tlvs.hpp
+2 −4 src/core/utils/ping_sender.cpp
+5 −9 src/lib/spinel/multi_frame_buffer.hpp
+4 −7 src/lib/spinel/spi_frame.hpp
+0 −1 src/posix/main.c
+1 −1 src/posix/platform/settings.cpp
+2 −0 src/posix/platform/spi_interface.cpp
+5 −5 tests/unit/test_checksum.cpp
+4 −4 tests/unit/test_ip4_header.cpp
+1 −3 tests/unit/test_ip6_header.cpp
+0 −1 tests/unit/test_ip_address.cpp
+1 −1 tests/unit/test_multicast_listeners_table.cpp
+347 −25 tests/unit/test_routing_manager.cpp

0 comments on commit 5e67eec

Please sign in to comment.