From d4042eedde9ebb11c310d121af2b97c9d2253e28 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Thu, 8 Jun 2023 16:33:05 +0200 Subject: [PATCH] gcoap: homogenize name of the module --- sys/include/net/gcoap.h | 10 +++++----- sys/include/net/gcoap/forward_proxy.h | 6 +++--- sys/net/application_layer/gcoap/Kconfig | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sys/include/net/gcoap.h b/sys/include/net/gcoap.h index 8fd9ad356b..89070169d9 100644 --- a/sys/include/net/gcoap.h +++ b/sys/include/net/gcoap.h @@ -8,7 +8,7 @@ */ /** - * @defgroup net_gcoap Gcoap + * @defgroup net_gcoap GCoAP * @ingroup net * @brief High-level interface to CoAP messaging * @@ -341,15 +341,15 @@ * * ## DTLS as transport security ## * - * Gcoap allows to use DTLS for transport security by using the @ref net_sock_dtls - * "DTLS sock API". Using the module gcoap_dtls enables the support. Gcoap + * GCoAP allows to use DTLS for transport security by using the @ref net_sock_dtls + * "DTLS sock API". Using the module gcoap_dtls enables the support. GCoAP * listens for requests on CONFIG_GCOAPS_PORT, 5684 by default when DTLS is enabled. * * Credentials have to been configured before use. See @ref net_credman "Credman" * and @ref net_sock_dtls_creds "DTLS sock credentials API" for credential managing. * Access to the DTLS socket is provided by gcoap_get_sock_dtls(). * - * Gcoap includes a DTLS session management component that stores active sessions. + * GCoAP includes a DTLS session management component that stores active sessions. * By default, it tries to have CONFIG_GCOAP_DTLS_MINIMUM_AVAILABLE_SESSIONS * session slots available to keep the server responsive. If not enough sessions * are available the server destroys the session that has not been used for the @@ -413,7 +413,7 @@ extern "C" { #endif /** - * @defgroup net_gcoap_conf Gcoap compile configurations + * @defgroup net_gcoap_conf GCoAP compile configurations * @ingroup net_gcoap * @ingroup config * @{ diff --git a/sys/include/net/gcoap/forward_proxy.h b/sys/include/net/gcoap/forward_proxy.h index 671cefa709..dc82116322 100644 --- a/sys/include/net/gcoap/forward_proxy.h +++ b/sys/include/net/gcoap/forward_proxy.h @@ -7,9 +7,9 @@ */ /** - * @defgroup net_gcoap_forward_proxy Gcoap Forward Proxy + * @defgroup net_gcoap_forward_proxy GCoAP Forward Proxy * @ingroup net_gcoap - * @brief Forward proxy implementation for Gcoap + * @brief Forward proxy implementation for GCoAP * @note Does not support CoAPS yet. * @see * RFC 7252 @@ -18,7 +18,7 @@ * @{ * * @file - * @brief Definitions for the Gcoap forward proxy + * @brief Definitions for the GCoAP forward proxy * * @author Cenk Gündoğan */ diff --git a/sys/net/application_layer/gcoap/Kconfig b/sys/net/application_layer/gcoap/Kconfig index 53ddd2504d..b499974e80 100644 --- a/sys/net/application_layer/gcoap/Kconfig +++ b/sys/net/application_layer/gcoap/Kconfig @@ -5,10 +5,10 @@ # directory for more details. # menuconfig KCONFIG_USEMODULE_GCOAP - bool "Configure Gcoap" + bool "Configure GCoAP" depends on USEMODULE_GCOAP help - Configure Gcoap module using Kconfig. If not set default values and + Configure GCoAP module using Kconfig. If not set default values and CFLAGS will be used. if KCONFIG_USEMODULE_GCOAP @@ -17,7 +17,7 @@ menuconfig KCONFIG_USEMODULE_GCOAP_FORWARD_PROXY bool "Configure forward proxy" depends on USEMODULE_GCOAP_FORWARD_PROXY help - Configure forward proxy of Gcoap using Kconfig. + Configure forward proxy of GCoAP using Kconfig. if KCONFIG_USEMODULE_GCOAP_FORWARD_PROXY config GCOAP_FORWARD_PROXY_EMPTY_ACK_MS @@ -29,7 +29,7 @@ menuconfig KCONFIG_USEMODULE_GCOAP_DNS bool "Configure DNS-over-CoAPS implementation in GCoAP" depends on USEMODULE_GCOAP_DNS help - Configure DNS-over-CoAPS submodule of Gcoap using Kconfig. If not set + Configure DNS-over-CoAPS submodule of GCoAP using Kconfig. If not set default values and CFLAGS will be used. if KCONFIG_USEMODULE_GCOAP_DNS