Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
superwhd committed Feb 16, 2023
1 parent a8ba300 commit 312a353
Show file tree
Hide file tree
Showing 16 changed files with 1,239 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ add_subdirectory(common)
if(OTBR_FEATURE_FLAGS)
add_subdirectory(proto)
endif()
add_subdirectory(dso)
add_subdirectory(ncp)
add_subdirectory(sdp_proxy)
add_subdirectory(srpl_dnssd)
add_subdirectory(trel_dnssd)

if(OTBR_DBUS)
Expand Down
1 change: 1 addition & 0 deletions src/agent/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ target_link_libraries(otbr-agent PRIVATE
openthread-ftd
openthread-spinel-rcp
openthread-hdlc
otbr-dso
otbr-sdp-proxy
otbr-ncp
otbr-common
Expand Down
3 changes: 3 additions & 0 deletions src/agent/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ Application::Application(const std::string &aInterfaceName,
#if OTBR_ENABLE_VENDOR_SERVER
, mVendorServer(mNcp)
#endif
#if OTBR_ENABLE_DNS_DSO
, mDsoAgent(mNcp)
#endif
{
OTBR_UNUSED_VARIABLE(aRestListenAddress);
}
Expand Down
4 changes: 4 additions & 0 deletions src/agent/application.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
#if OTBR_ENABLE_VENDOR_SERVER
#include "agent/vendor.hpp"
#endif
#include "dso/dso_transport.hpp"
#include "utils/infra_link_selector.hpp"

namespace otbr {
Expand Down Expand Up @@ -144,6 +145,9 @@ class Application : private NonCopyable
#if OTBR_ENABLE_VENDOR_SERVER
vendor::VendorServer mVendorServer;
#endif
#if OTBR_ENABLE_DNS_DSO
Dso::DsoAgent mDsoAgent;
#endif

static std::atomic_bool sShouldTerminate;
};
Expand Down
1 change: 1 addition & 0 deletions src/border_agent/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ add_library(otbr-border-agent
target_link_libraries(otbr-border-agent PRIVATE
$<$<BOOL:${OTBR_MDNS}>:otbr-mdns>
$<$<BOOL:${OTBR_BACKBONE_ROUTER}>:otbr-backbone-router>
otbr-srpl-dnssd
otbr-trel-dnssd
otbr-common
)
3 changes: 3 additions & 0 deletions src/border_agent/border_agent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ BorderAgent::BorderAgent(otbr::Ncp::ControllerOpenThread &aNcp)
#if OTBR_ENABLE_TREL
, mTrelDnssd(aNcp, *mPublisher)
#endif
#if OTBR_ENABLE_SRP_REPLICATION
, mSrplDnssd(aNcp, *mPublisher)
#endif
{
}

Expand Down
4 changes: 4 additions & 0 deletions src/border_agent/border_agent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
#include "ncp/ncp_openthread.hpp"
#include "sdp_proxy/advertising_proxy.hpp"
#include "sdp_proxy/discovery_proxy.hpp"
#include "srpl_dnssd/srpl_dnssd.hpp"
#include "trel_dnssd/trel_dnssd.hpp"

#ifndef OTBR_VENDOR_NAME
Expand Down Expand Up @@ -144,6 +145,9 @@ class BorderAgent : private NonCopyable
#if OTBR_ENABLE_TREL
TrelDnssd::TrelDnssd mTrelDnssd;
#endif
#if OTBR_ENABLE_SRP_REPLICATION
SrplDnssd::SrplDnssd mSrplDnssd;
#endif

std::string mServiceInstanceName;
};
Expand Down
39 changes: 39 additions & 0 deletions src/dso/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#
# Copyright (c) 2023, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

add_library(otbr-dso
dso_transport.cpp
dso_transport.hpp
)

target_link_libraries(otbr-dso
PUBLIC
mbedtls
PRIVATE
otbr-common
)

0 comments on commit 312a353

Please sign in to comment.