From c898d752f5363860420a45a090d623031ac493b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20H=C3=BC=C3=9Fler?= Date: Wed, 21 Aug 2024 15:02:31 +0200 Subject: [PATCH] examples/gcoap: add -o and -d to Options in usage manual --- examples/gcoap/client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/gcoap/client.c b/examples/gcoap/client.c index 8736bc0d12..a2b31ff040 100644 --- a/examples/gcoap/client.c +++ b/examples/gcoap/client.c @@ -191,6 +191,8 @@ static int _print_usage(char **argv) printf(" %s proxy unset\n", argv[0]); printf("Options\n"); printf(" -c Send confirmably (defaults to non-confirmable)\n"); + printf(" -o include Observe registration option\n"); + printf(" -d include Observe deregistration option\n"); return 1; }