Skip to content
Open
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
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 79 files
+1 −1 .github/workflows/docker.yml
+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
+14 −14 .github/workflows/simulation-1.1.yml
+15 −15 .github/workflows/simulation-1.4.yml
+1 −1 .github/workflows/size.yml
+1 −1 .github/workflows/toranj.yml
+1 −1 .github/workflows/unit.yml
+1 −1 README.md
+ doc/images/ot-contrib-beken.png
+11 −0 doc/ot_api_doc.h
+1 −0 etc/cmake/options.cmake
+14 −0 include/openthread/border_routing.h
+1 −0 include/openthread/dataset.h
+1 −1 include/openthread/instance.h
+8 −0 include/openthread/ip6.h
+1 −0 include/openthread/tcat.h
+2 −0 src/core/BUILD.gn
+1 −0 src/core/CMakeLists.txt
+2 −2 src/core/api/border_routing_api.cpp
+5 −0 src/core/api/ip6_api.cpp
+7 −0 src/core/border_router/br_log.cpp
+13 −0 src/core/border_router/br_log.hpp
+1 −1 src/core/border_router/br_tracker.cpp
+0 −2 src/core/border_router/br_tracker.hpp
+32 −0 src/core/border_router/br_types.cpp
+43 −0 src/core/border_router/br_types.hpp
+19 −2 src/core/border_router/infra_if.cpp
+126 −0 src/core/border_router/multi_ail_detector.cpp
+130 −0 src/core/border_router/multi_ail_detector.hpp
+45 −183 src/core/border_router/routing_manager.cpp
+18 −98 src/core/border_router/routing_manager.hpp
+272 −25 src/core/border_router/rx_ra_tracker.cpp
+102 −45 src/core/border_router/rx_ra_tracker.hpp
+3 −0 src/core/instance/instance.cpp
+7 −0 src/core/instance/instance.hpp
+27 −12 src/core/mac/mac_frame.cpp
+4 −4 src/core/mac/mac_frame.hpp
+36 −0 src/core/mac/mac_header_ie.cpp
+33 −0 src/core/mac/mac_header_ie.hpp
+22 −0 src/core/mac/mac_types.cpp
+40 −0 src/core/mac/mac_types.hpp
+2 −3 src/core/mac/wakeup_tx_scheduler.cpp
+6 −0 src/core/meshcop/meshcop_tlvs.hpp
+4 −7 src/core/meshcop/secure_transport.cpp
+14 −4 src/core/meshcop/secure_transport.hpp
+98 −19 src/core/meshcop/tcat_agent.cpp
+18 −11 src/core/meshcop/tcat_agent.hpp
+1 −1 src/core/net/ip6.cpp
+4 −4 src/core/net/mdns.cpp
+3 −2 src/core/net/mdns.hpp
+85 −0 src/core/net/nd6.cpp
+132 −0 src/core/net/nd6.hpp
+62 −44 src/core/thread/mle.cpp
+11 −8 src/core/thread/mle.hpp
+39 −42 src/core/thread/mle_ftd.cpp
+5 −14 src/core/thread/mle_tlvs.hpp
+9 −0 src/core/thread/mle_types.hpp
+3 −0 src/core/thread/tmf.cpp
+4 −0 src/core/thread/uri_paths.cpp
+2 −0 src/core/thread/uri_paths.hpp
+2 −0 src/lib/spinel/spinel.c
+28 −0 src/lib/spinel/spinel.h
+94 −0 src/lib/spinel/spinel_prop_codec.cpp
+59 −0 src/lib/spinel/spinel_prop_codec.hpp
+46 −1 src/ncp/ncp_base.hpp
+1 −0 src/ncp/ncp_base_dispatcher.cpp
+27 −0 src/ncp/ncp_base_ftd.cpp
+6 −2 src/ncp/platform/dnssd.cpp
+55 −0 tests/gtest/fake_platform.cpp
+28 −3 tests/scripts/thread-cert/node.py
+139 −0 tests/scripts/thread-cert/test_tcat_tmf_enable_req.py
+74 −4 tests/unit/test_mac_frame.cpp
+67 −0 tests/unit/test_ncp_dnssd.cpp
+115 −20 tests/unit/test_routing_manager.cpp
+75 −0 tests/unit/test_spinel_prop_codec.cpp
Loading