From 1631307bb3cc86d94fd8ebf3f3f07c614e72a748 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 8 Aug 2016 21:42:27 +0200 Subject: [PATCH] tcp.c: Partly undo Simon's changes from today (repairs doxygen docs) --- src/core/tcp.c | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/core/tcp.c b/src/core/tcp.c index a3f8ea04..a132cb4e 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -2,6 +2,15 @@ * @file * Transmission Control Protocol for IP * See also @ref tcp_raw + * + * @defgroup tcp_raw TCP + * @ingroup callbackstyle_api + * Transmission Control Protocol for IP\n + * @see @ref raw_api and @ref netconn + * + * Common functions for the TCP implementation, such as functinos + * for manipulating the data structures and the TCP timer functions. TCP functions + * related to input and output is found in tcp_in.c and tcp_out.c respectively.\n */ /* @@ -36,17 +45,6 @@ * */ -/** - * @defgroup tcp_raw TCP - * @ingroup raw_api - * Transmission Control Protocol for IP\n - * @see @ref raw_api and @ref netconn - * - * Common functions for the TCP implementation, such as functinos - * for manipulating the data structures and the TCP timer functions. TCP functions - * related to input and output is found in tcp_in.c and tcp_out.c respectively.\n - */ - #include "lwip/opt.h" #if LWIP_TCP /* don't build if not configured for use in lwipopts.h */