Lines Matching +full:apt +full:- +full:get

14 protocol for use with constrained nodes and constrained (e.g., low-power,
27 protocol, a simple, low-cost remote management and service enablement mechanism.
32 - `RFC7252: The Constrained Application Protocol (CoAP) <https://tools.ietf.org/html/rfc7252>`_
33 - `RFC6690: Constrained RESTful Environments (CoRE) Link Format <https://tools.ietf.org/html/rfc669…
34 - `RFC7959: Block-Wise Transfers in the Constrained Application Protocol (CoAP) <https://tools.ietf…
35 - `RFC7641: Observing Resources in the Constrained Application Protocol (CoAP) <https://tools.ietf.…
51 The ``.well-known/core`` resource should be added before all other
52 resources that should be included in the responses of the ``.well-known/core``
55 .. code-block:: c
58 { .get = well_known_core_get,
61 { .get = sample_get,
76 .. code-block:: c
84 using MQTT-like wildcard style:
86 - the plus symbol represents a single-level wild card in the path;
87 - the hash symbol represents the multi-level wild card in the path.
89 .. code-block:: c
96 but returns -ENOENT for /led/1, /test/21, /test/1.
112 the ``.well-known/core`` CoAP message.
114 .. code-block:: c
135 sizeof(payload) - 1);
146 libcoap implements a lightweight application-protocol for devices that are
149 libcoap has a script (``examples/etsi_coaptest.sh``) to test coap-server functionality
152 See the `net-tools <https://github.com/zephyrproject-rtos/net-tools>`_ project for more details
154 The :zephyr:code-sample:`coap-server` sample can be built and executed on QEMU as described
160 .. code-block:: console
162 sudo ./libcoap/examples/etsi_coaptest.sh -i tap0 2001:db8::1
168 Install eclipse-titan and set symbolic links for titan tools
170 .. code-block:: console
172 sudo apt-get install eclipse-titan
176 sudo ln -s /usr/bin bin
178 sudo ln -s /usr/bin/mctr_cli bin
179 sudo ln -s /usr/include/titan include
180 sudo ln -s /usr/lib/titan lib
190 - https://gitlab.eclipse.org/eclipse/titan/titan.misc
191 - https://gitlab.eclipse.org/eclipse/titan/titan.misc/-/tree/master/CoAP_Conf
193 After the build is complete, the :zephyr:code-sample:`coap-server` sample can be built
196 Change the client (test suite) and server (Zephyr coap-server sample) addresses
201 .. code-block:: console
207 .. code-block:: console