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/ot-br-posix/repo from 8299da3 to 86cb36e #136

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
2 changes: 1 addition & 1 deletion third_party/ot-br-posix/repo
Submodule repo updated 56 files
+1 −1 .github/workflows/border_router.yml
+7 −7 .github/workflows/build.yml
+5 −10 .github/workflows/docker.yml
+1 −1 .github/workflows/documentation.yml
+1 −1 .github/workflows/macOS.yml
+1 −1 .github/workflows/meshcop.yml
+1 −1 .github/workflows/openwrt.yml
+1 −1 .github/workflows/raspbian.yml
+57 −20 CODE_OF_CONDUCT.md
+12 −0 etc/cmake/options.cmake
+3 −0 etc/docker/Dockerfile
+3 −1 etc/openwrt/openthread-br/Makefile
+10 −0 script/_firewall
+10 −0 script/_otbr
+2 −0 script/bootstrap
+1 −0 script/test
+1 −0 src/agent/CMakeLists.txt
+2 −2 src/agent/application.cpp
+76 −1 src/agent/application.hpp
+20 −12 src/agent/vendor.hpp
+12 −4 src/border_agent/border_agent.cpp
+3 −0 src/common/CMakeLists.txt
+40 −0 src/common/code_utils.cpp
+12 −0 src/common/code_utils.hpp
+4 −120 src/dbus/server/dbus_thread_object.cpp
+105 −63 src/mdns/mdns.cpp
+106 −63 src/mdns/mdns.hpp
+146 −87 src/mdns/mdns_avahi.cpp
+12 −12 src/mdns/mdns_avahi.hpp
+302 −261 src/mdns/mdns_mdnssd.cpp
+63 −88 src/mdns/mdns_mdnssd.hpp
+1 −6 src/ncp/CMakeLists.txt
+4 −8 src/ncp/ncp_openthread.hpp
+4 −1 src/openwrt/otbr-agent.init.in
+3 −0 src/openwrt/otbr-agent.uci-config.in
+6 −1 src/proto/CMakeLists.txt
+438 −15 src/proto/thread_telemetry.proto
+7 −17 src/sdp_proxy/advertising_proxy.cpp
+1 −4 src/sdp_proxy/advertising_proxy.hpp
+9 −11 src/trel_dnssd/trel_dnssd.cpp
+3 −3 src/trel_dnssd/trel_dnssd.hpp
+5 −1 src/utils/CMakeLists.txt
+18 −5 src/utils/pskc.cpp
+105 −0 src/utils/sha256.cpp
+118 −0 src/utils/sha256.hpp
+705 −0 src/utils/thread_helper.cpp
+25 −0 src/utils/thread_helper.hpp
+9 −9 src/web/web-service/ot_client.cpp
+0 −5 tests/dbus/CMakeLists.txt
+1 −0 tests/dbus/test-client
+24 −1 tests/dbus/test_dbus_client.cpp
+100 −17 tests/mdns/main.cpp
+2 −8 tests/scripts/check-docker
+16 −0 tests/unit/test_pskc.cpp
+2 −0 third_party/openthread/CMakeLists.txt
+1 −1 third_party/openthread/repo
Loading