Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openthread/ot-br-posix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 94fa8de50a2b8c1dd3ed7c4d582b63b30c059c2c
Choose a base ref
..
head repository: openthread/ot-br-posix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 312a35387b21490ca22c92fa95c48690d1891090
Choose a head ref
Showing with 182 additions and 87 deletions.
  1. +0 −10 etc/cmake/options.cmake
  2. +1 −1 src/agent/application.cpp
  3. +146 −52 src/dso/dso_transport.cpp
  4. +34 −23 src/dso/dso_transport.hpp
  5. +1 −1 src/srpl_dnssd/srpl_dnssd.cpp
10 changes: 0 additions & 10 deletions etc/cmake/options.cmake
Original file line number Diff line number Diff line change
@@ -116,16 +116,6 @@ if(OTBR_NAT64)
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_NAT64=1)
endif()

option(OTBR_DNS_DSO "Enable DSO" OFF)
if(OTBR_DNS_DSO)
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_DNS_DSO=1)
endif()

option(OTBR_SRP_REPLICATION "Enable SRP Replication" OFF)
if(OTBR_SRP_REPLICATION)
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_SRP_REPLICATION=1)
endif()

option(OTBR_VENDOR_INFRA_LINK_SELECT "Enable Vendor-specific infrastructure link selection rules" OFF)
if(OTBR_VENDOR_INFRA_LINK_SELECT)
target_compile_definitions(otbr-config INTERFACE OTBR_ENABLE_VENDOR_INFRA_LINK_SELECT=1)
2 changes: 1 addition & 1 deletion src/agent/application.cpp
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@ Application::Application(const std::string &aInterfaceName,
, mVendorServer(mNcp)
#endif
#if OTBR_ENABLE_DNS_DSO
, mDsoAgent()
, mDsoAgent(mNcp)
#endif
{
OTBR_UNUSED_VARIABLE(aRestListenAddress);
Loading