Home
last modified time | relevance | path

Searched +full:otbr +full:- +full:doc (Results 1 – 7 of 7) sorted by relevance

/external/ot-br-posix/doc/
DCMakeLists.txt38 add_custom_target(otbr-doc) target
45 add_dependencies(otbr-doc doxygen)
49 set(DBUS_DOC_TARGET ${CMAKE_CURRENT_BINARY_DIR}/html/dbus-api.html)
50 add_custom_target(otbr-dbus-server-doc-copy ALL
54 add_dependencies(otbr-dbus-server-doc-copy doxygen otbr-dbus-server-doc)
55 add_dependencies(otbr-doc otbr-dbus-server-doc-copy)
/external/ot-br-posix/
D.gitignore32 # Build bi-products.
33 .local-version
37 stamp-h1
38 .stamp-h1
42 doc/Doxyfile
43 doc/html
51 include/otbr-config.h
52 include/otbr-config.h.in
56 [._]*.s[a-w][a-z]
57 [._]s[a-w][a-z]
[all …]
DREADME.md1-gh-action-build-svg]][ot-gh-action-build] [![Docker Status][ot-gh-action-docker-svg]][ot-gh-actio…
3 ---
7 …, a Thread Border Router connects a Thread network to other IP-based networks, such as Wi-Fi or Et…
11 - End-to-end IP connectivity via routing between Thread devices and other external IP networks
12 - External Thread Commissioning (for example, a mobile phone) to authenticate and join a Thread dev…
14 <a href="https://www.threadgroup.org/What-is-Thread#certifiedproducts">
15 <img src="/doc/images/certified.svg" alt="Thread Certified Component" width="150px" align="right">
18 OpenThread's implementation of a Border Router is called OpenThread Border Router (OTBR). **OTBR is…
20 OTBR includes a number of features, including:
22 - Web UI for configuration and management
[all …]
DCMakeLists.txt30 project(openthread-br VERSION 0.3.0)
32 add_compile_options(-Wall -Wextra -Werror -Wfatal-errors -Wuninitialized -Wno-missing-braces)
34 add_library(otbr-config INTERFACE)
40 …NSTANCE_NAME "${OTBR_VENDOR_NAME} ${OTBR_PRODUCT_NAME}" CACHE STRING "The OTBR MeshCoP service ins…
60 set(CMAKE_EXE_LINKER_FLAGS "-rdynamic ${CMAKE_EXE_LINKER_FLAGS}")
64 target_compile_options(otbr-config INTERFACE -g -O0 --coverage)
65 target_link_libraries(otbr-config INTERFACE --coverage)
68 message(STATUS "OTBR package name: ${OTBR_NAME}")
72 COMMAND git describe --dirty --always
78 set(OTBR_VERSION "${PROJECT_VERSION}-${OTBR_GIT_VERSION}")
[all …]
/external/ot-br-posix/src/dbus/server/
DCMakeLists.txt29 add_custom_target(otbr-dbus-introspect-header ALL
37 add_library(otbr-dbus-server STATIC
44 target_include_directories(otbr-dbus-server PRIVATE
49 add_dependencies(otbr-dbus-server otbr-dbus-introspect-header)
51 target_link_libraries(otbr-dbus-server PUBLIC
52 otbr-dbus-common
53 otbr-proto
57 add_custom_target(otbr-dbus-server-doc ALL
58 …COMMAND gdbus-codegen --generate-docbook generated-docs ${CMAKE_CURRENT_SOURCE_DIR}/introspect.xml
59 COMMAND xmlto html generated-docs-io.openthread.BorderRouter.xml
/external/ot-br-posix/.github/workflows/
Ddocumentation.yml34 - 'main'
37 …group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'opent…
38 cancel-in-progress: true
42 runs-on: ubuntu-latest
46 - uses: actions/checkout@v4
49 - name: Bootstrap
52 sudo apt-get install -y libglib2.0-dev-bin xmlto
53 - name: Generate
55 mkdir build-doc
56 cd build-doc
[all …]
/external/ot-br-posix/src/trel_dnssd/
Dtrel_dnssd.cpp31 * This file includes implementation of TREL DNS-SD over mDNS.
53 static otbr::TrelDnssd::TrelDnssd *sTrelDnssd = nullptr;
57 sTrelDnssd->Initialize(aTrelNetif); in trelDnssdInitialize()
62 sTrelDnssd->StartBrowse(); in trelDnssdStartBrowse()
67 sTrelDnssd->StopBrowse(); in trelDnssdStopBrowse()
72 sTrelDnssd->RegisterService(aPort, aTxtData, aTxtLength); in trelDnssdRegisterService()
77 sTrelDnssd->UnregisterService(); in trelDnssdRemoveService()
80 namespace otbr { namespace
236 Utils::Bytes2Hex(extaddr->m8, sizeof(otExtAddress), nameBuf); in GetTrelInstanceName()
301 // Skip anycast (Refer to https://datatracker.ietf.org/doc/html/rfc2373#section-2.6.1) in OnTrelServiceInstanceAdded()
[all …]