From 83d0607acf219f7b39a2bafe1f9e128081967258 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Thu, 27 Apr 2017 19:25:19 +0200 Subject: [PATCH] Add PBUF_NEEDS_COPY macro to documentation --- src/include/lwip/pbuf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/lwip/pbuf.h b/src/include/lwip/pbuf.h index cfce97ac..bad062c2 100644 --- a/src/include/lwip/pbuf.h +++ b/src/include/lwip/pbuf.h @@ -55,7 +55,8 @@ extern "C" { #define LWIP_SUPPORT_CUSTOM_PBUF ((IP_FRAG && !LWIP_NETIF_TX_SINGLE_PBUF) || (LWIP_IPV6 && LWIP_IPV6_FRAG)) #endif -/** PBUF_NEEDS_COPY(p): return a boolean value indicating whether the given +/** @ingroup pbuf + * PBUF_NEEDS_COPY(p): return a boolean value indicating whether the given * pbuf needs to be copied in order to be kept around beyond the current call * stack without risking being corrupted. The default setting provides safety: * it will make a copy iof any pbuf chain that does not consist entirely of