1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #20565 from emmanuel-ferdman/wip

gcoap: update the example reference
This commit is contained in:
benpicco 2024-04-11 11:49:56 +00:00 committed by GitHub
commit 3cdc4379b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,7 +65,7 @@
* reading the request, the callback must use functions provided by gcoap to
* format the response, as described below. The callback *must* read the request
* thoroughly before calling the functions, because the response buffer likely
* reuses the request buffer. See `examples/gcoap/gcoap_cli.c` for a simple
* reuses the request buffer. See `examples/gcoap/client.c` for a simple
* example of a callback.
*
* Here is the expected sequence for a callback function:
@ -105,7 +105,7 @@
*
* Client operation includes two phases: creating and sending a request, and
* handling the response asynchronously in a client supplied callback. See
* `examples/gcoap/gcoap_cli.c` for a simple example of sending a request and
* `examples/gcoap/client.c` for a simple example of sending a request and
* reading the response.
*
* ### Creating a request ###
@ -260,7 +260,7 @@
*
* The client requests a specific blockwise payload from the overall body by
* writing a Block2 option in the request. See _resp_handler() in the
* [gcoap](https://github.com/RIOT-OS/RIOT/blob/master/examples/gcoap/gcoap_cli.c)
* [gcoap](https://github.com/RIOT-OS/RIOT/blob/master/examples/gcoap/client.c)
* example in the RIOT distribution, which implements the sequence described
* below.
*