From 4f5d0466228ff43d126698822dc8c841e02bec5c Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 7 Feb 2017 13:32:17 +0100 Subject: [PATCH] doc: net: replace doc references of conn with sock --- sys/include/net/gnrc.h | 6 +++--- sys/posix/sockets/doc.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/include/net/gnrc.h b/sys/include/net/gnrc.h index f055d4478..3fbc695bf 100644 --- a/sys/include/net/gnrc.h +++ b/sys/include/net/gnrc.h @@ -30,7 +30,7 @@ * ===================== * * From the application layer the @ref net_gnrc can be accessed through the - * @ref net_conn, while the interface to the @ref drivers_netdev_netdev2 is + * @ref net_sock, while the interface to the @ref drivers_netdev_netdev2 is * defined by the @ref net_gnrc_netdev2. * * Architecture @@ -258,9 +258,9 @@ * USEMODULE += gnrc_udp * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * - * - To use @ref net_conn_udp with GNRC include + * - To use @ref net_sock_udp with GNRC include * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.mk} - * USEMODULE += gnrc_conn_udp + * USEMODULE += gnrc_sock_udp * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * * - To include the @ref net_gnrc_rpl module diff --git a/sys/posix/sockets/doc.txt b/sys/posix/sockets/doc.txt index c02bd2f6f..66d67ee0f 100644 --- a/sys/posix/sockets/doc.txt +++ b/sys/posix/sockets/doc.txt @@ -8,7 +8,7 @@ /** * @defgroup posix_sockets POSIX sockets - * @brief POSIX socket wrapper of RIOT's @ref net_conn + * @brief POSIX socket wrapper of RIOT's @ref net_sock * @see * The Open Group Specifications Issue 7 *