mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge #19721
19721: nanocoap, gcoap: homogenize name of the module r=benpicco a=benpicco Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
This commit is contained in:
commit
98370beb4f
@ -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
|
||||
* @{
|
||||
|
@ -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 <a href="https://tools.ietf.org/html/rfc7252#section-5.7.2">
|
||||
* 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 <cenk.guendogan@haw-hamburg.de>
|
||||
*/
|
||||
|
@ -10,7 +10,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup net_nanocoap Nanocoap small CoAP library
|
||||
* @defgroup net_nanocoap nanoCoAP small CoAP library
|
||||
* @ingroup net
|
||||
* @brief CoAP library optimized for minimal resource usage
|
||||
*
|
||||
@ -112,7 +112,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Nanocoap specific CoAP method flags used in coap_handlers array
|
||||
* @name nanoCoAP specific CoAP method flags used in coap_handlers array
|
||||
* @anchor nanocoap_method_flags
|
||||
* @{
|
||||
*/
|
||||
@ -130,12 +130,12 @@ extern "C" {
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @brief Nanocoap-specific value to indicate no format specified
|
||||
* @brief nanoCoAP-specific value to indicate no format specified
|
||||
*/
|
||||
#define COAP_FORMAT_NONE (UINT16_MAX)
|
||||
|
||||
/**
|
||||
* @defgroup net_nanocoap_conf Nanocoap compile configurations
|
||||
* @defgroup net_nanocoap_conf nanoCoAP compile configurations
|
||||
* @ingroup net_nanocoap
|
||||
* @ingroup config
|
||||
* @{
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup net_nanocoap_cache Nanocoap-Cache implementation
|
||||
* @defgroup net_nanocoap_cache nanoCoAP-Cache implementation
|
||||
* @ingroup net_nanocoap
|
||||
* @brief A cache implementation for nanocoap response messages
|
||||
*
|
||||
|
@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup net_nanosock Nanocoap Sock
|
||||
* @defgroup net_nanosock nanoCoAP Sock
|
||||
* @ingroup net
|
||||
* @brief Synchronous sock based messaging with nanocoap
|
||||
*
|
||||
|
@ -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
|
||||
|
@ -5,13 +5,13 @@
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
# Nanocoap provides CoAP functionalities
|
||||
# nanoCoAP provides CoAP functionalities
|
||||
config USEMODULE_NANOCOAP
|
||||
bool
|
||||
select HAS_PROTOCOL_COAP
|
||||
|
||||
menuconfig KCONFIG_USEMODULE_NANOCOAP
|
||||
bool "Configure Nanocoap module"
|
||||
bool "Configure nanoCoAP module"
|
||||
depends on USEMODULE_NANOCOAP
|
||||
|
||||
if KCONFIG_USEMODULE_NANOCOAP
|
||||
@ -36,7 +36,7 @@ config NANOCOAP_QS_MAX
|
||||
default 64
|
||||
|
||||
menuconfig KCONFIG_USEMODULE_NANOCOAP_CACHE
|
||||
bool "Configure Nanocoap Cache module"
|
||||
bool "Configure nanoCoAP Cache module"
|
||||
depends on USEMODULE_NANOCOAP_CACHE
|
||||
|
||||
if KCONFIG_USEMODULE_NANOCOAP_CACHE
|
||||
|
@ -13,7 +13,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Nanocoap implementation
|
||||
* @brief nanoCoAP implementation
|
||||
*
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||
|
@ -13,7 +13,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Nanocoap sock helpers
|
||||
* @brief nanoCoAP sock helpers
|
||||
*
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Nanocoap VFS helpers
|
||||
* @brief nanoCoAP VFS helpers
|
||||
*
|
||||
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user