Skip to content

Commit

Permalink
Bump third_party/openthread/repo from f0b6fce to 39fcc5e
Browse files Browse the repository at this point in the history
Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `f0b6fce` to `39fcc5e`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@f0b6fce...39fcc5e)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Mar 6, 2024
1 parent b742587 commit af66335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 85 files
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/otbr.yml
+1 −1 .github/workflows/posix.yml
+1 −1 .github/workflows/scorecards.yml
+1 −1 .github/workflows/simulation-1.1.yml
+1 −1 .github/workflows/simulation-1.2.yml
+23 −1 .github/workflows/toranj.yml
+1 −1 .github/workflows/unit.yml
+1 −0 examples/config/ot-core-config-check-size-br.h
+1 −0 examples/config/ot-core-config-check-size-ftd.h
+1 −0 examples/config/ot-core-config-check-size-mtd.h
+1 −0 examples/platforms/simulation/CMakeLists.txt
+287 −10 examples/platforms/simulation/infra_if.c
+36 −0 examples/platforms/simulation/platform-simulation.h
+29 −153 examples/platforms/simulation/radio.c
+226 −0 examples/platforms/simulation/simul_utils.c
+149 −0 examples/platforms/simulation/simul_utils.h
+12 −0 examples/platforms/simulation/system.c
+19 −130 examples/platforms/simulation/trel.c
+6 −26 examples/platforms/simulation/uart.c
+134 −0 include/openthread/border_agent.h
+1 −1 include/openthread/instance.h
+0 −1 include/openthread/ip6.h
+0 −21 include/openthread/link.h
+35 −0 include/openthread/message.h
+143 −24 src/cli/README.md
+114 −0 src/cli/cli.cpp
+5 −0 src/cli/cli.hpp
+11 −8 src/cli/cli_coap_secure.cpp
+31 −0 src/core/api/border_agent_api.cpp
+5 −0 src/core/api/message_api.cpp
+2 −1 src/core/backbone_router/bbr_manager.cpp
+4 −1 src/core/border_router/routing_manager.cpp
+41 −4 src/core/common/message.cpp
+45 −10 src/core/common/message.hpp
+5 −2 src/core/common/string.cpp
+2 −2 src/core/common/string.hpp
+11 −0 src/core/config/border_agent.h
+157 −9 src/core/meshcop/border_agent.cpp
+125 −1 src/core/meshcop/border_agent.hpp
+6 −11 src/core/net/ip6.cpp
+2 −5 src/core/net/ip6.hpp
+0 −24 src/core/net/socket.hpp
+4 −3 src/core/radio/radio.hpp
+2 −2 src/core/radio/radio_platform.cpp
+5 −6 src/core/thread/discover_scanner.cpp
+8 −3 src/core/thread/link_quality.cpp
+6 −8 src/core/thread/mesh_forwarder.cpp
+1 −1 src/core/thread/mesh_forwarder.hpp
+1 −7 src/core/thread/mesh_forwarder_ftd.cpp
+4 −4 src/core/thread/mle.cpp
+15 −15 src/core/thread/mle_router.cpp
+4 −4 src/core/thread/mle_router.hpp
+1 −1 src/lib/spinel/multi_frame_buffer.hpp
+3 −0 src/lib/spinel/radio_spinel.cpp
+2 −0 src/lib/spinel/spinel_encoder.cpp
+6 −0 src/lib/spinel/spinel_encoder.hpp
+2 −0 src/ncp/ncp_base.cpp
+3 −3 src/posix/platform/config_file.hpp
+3 −3 src/posix/platform/configuration.hpp
+1 −6 src/posix/platform/daemon.cpp
+1 −1 src/posix/platform/daemon.hpp
+4 −3 src/posix/platform/hdlc_interface.hpp
+13 −0 src/posix/platform/include/openthread/openthread-system.h
+31 −2 src/posix/platform/infra_if.cpp
+15 −3 src/posix/platform/infra_if.hpp
+5 −0 src/posix/platform/ip6_utils.hpp
+1 −1 src/posix/platform/mainloop.hpp
+3 −3 src/posix/platform/openthread-posix-config.h
+3 −3 src/posix/platform/platform-posix.h
+3 −3 src/posix/platform/power.hpp
+3 −3 src/posix/platform/radio.hpp
+3 −3 src/posix/platform/radio_url.hpp
+5 −9 src/posix/platform/resolver.hpp
+3 −3 src/posix/platform/settings.hpp
+3 −3 src/posix/platform/spi_interface.hpp
+13 −0 src/posix/platform/system.cpp
+3 −3 src/posix/platform/vendor_interface.hpp
+33 −0 tests/toranj/cli/cli.py
+96 −0 tests/toranj/cli/test-028-border-agent-ephemeral-key.py
+111 −0 tests/toranj/cli/test-500-two-brs-two-networks.py
+4 −0 tests/toranj/openthread-core-toranj-config-posix.h
+2 −0 tests/toranj/openthread-core-toranj-config-simulation.h
+4 −2 tests/toranj/openthread-core-toranj-config.h
+2 −0 tests/toranj/start.sh

0 comments on commit af66335

Please sign in to comment.