From 07c7d63d446d56a3a0392e3ce1294a9042c180e9 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Tue, 18 Aug 2015 14:43:57 +0200 Subject: Fix warning when use -Wdocumentation src/include/ndpi_api.h:73:13: error: parameter 'ndpi_malloc' not found in the function declaration [-Werror,-Wdocumentation] src/include/ndpi_api.h:91:13: error: parameter 'cache' not found in the function declaration [-Werror,-Wdocumentation] src/include/ndpi_api.h:92:13: error: parameter 'cache' not found in the function declaration [-Werror,-Wdocumentation] ndpiReader.c:152:22: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] ndpiReader.c:153:36: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] ndpiReader.c:156:39: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] --- src/include/ndpi_api.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h index 30948706b..7b4550150 100644 --- a/src/include/ndpi_api.h +++ b/src/include/ndpi_api.h @@ -70,7 +70,7 @@ extern "C" { /** * This function returns a new initialized detection module. * @param ticks_per_second the timestamp resolution per second (like 1000 for millisecond resolution) - * @param ndpi_malloc function pointer to a memory allocator + * @param __ndpi_malloc function pointer to a memory allocator * @param ndpi_debug_printf a function pointer to a debug output function, use NULL in productive envionments * @return the initialized detection module */ @@ -88,8 +88,8 @@ extern "C" { /** * This function enables cache support in nDPI used for some protocol such as Skype - * @param cache host name - * @param cache port + * @param host host name + * @param port port number */ void ndpi_enable_cache(struct ndpi_detection_module_struct *ndpi_mod, char* host, u_int port); -- cgit v1.2.3