From cb5232a10783496e0c0237d566f97a73ddbf0ef2 Mon Sep 17 00:00:00 2001 From: Rotzbua <Rotzbua@users.noreply.github.com> Date: Wed, 12 Dec 2018 02:26:05 +0100 Subject: [PATCH] gcoap/example: add comment on resource order according to nanocoap/example: fix resource order #9919 --- examples/gcoap/gcoap_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gcoap/gcoap_cli.c b/examples/gcoap/gcoap_cli.c index 95c405e89e..0d917c736b 100644 --- a/examples/gcoap/gcoap_cli.c +++ b/examples/gcoap/gcoap_cli.c @@ -34,7 +34,7 @@ static void _resp_handler(unsigned req_state, coap_pkt_t* pdu, static ssize_t _stats_handler(coap_pkt_t* pdu, uint8_t *buf, size_t len, void *ctx); static ssize_t _riot_board_handler(coap_pkt_t* pdu, uint8_t *buf, size_t len, void *ctx); -/* CoAP resources */ +/* CoAP resources. Must be sorted by path (ASCII order). */ static const coap_resource_t _resources[] = { { "/cli/stats", COAP_GET | COAP_PUT, _stats_handler, NULL }, { "/riot/board", COAP_GET, _riot_board_handler, NULL }, -- GitLab