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

net/sock : Update documentation

Added net_sock_conf super group and updated sock_util to the super
group.
This commit is contained in:
Akshai M 2020-09-04 16:24:58 +05:30
parent b8d2d30a6d
commit 55fe4a464f
2 changed files with 12 additions and 4 deletions

View File

@ -206,11 +206,9 @@ static inline bool sock_udp_ep_equal(const sock_udp_ep_t *a,
/**
* @defgroup net_sock_util_conf SOCK utility functions compile configurations
* @ingroup net_sock_util
* @ingroup config
* @ingroup net_sock_conf
* @{
*/
/**
* @brief maximum length of the scheme part for sock_urlsplit.
*
@ -233,7 +231,6 @@ static inline bool sock_udp_ep_equal(const sock_udp_ep_t *a,
#ifndef CONFIG_SOCK_URLPATH_MAXLEN
#define CONFIG_SOCK_URLPATH_MAXLEN (64U)
#endif
/** @} */
#ifdef __cplusplus

11
sys/net/sock/doc.txt Normal file
View File

@ -0,0 +1,11 @@
# Copyright (c) 2020 Freie Universitaet Berlin
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
/**
* @defgroup net_sock_conf SOCK compile configurations
* @ingroup config
* @brief Group of compile time configurations related to SOCK
*/