diff options
-rw-r--r-- | example/ndpiReader.c | 6 | ||||
-rw-r--r-- | src/include/ndpi_api.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index c11c0c50d..73166761f 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -149,11 +149,11 @@ static struct reader_thread ndpi_thread_info[MAX_NUM_READER_THREADS]; * @brief ID tracking */ typedef struct ndpi_id { - u_int8_t ip[4]; //< Ip address - struct ndpi_id_struct *ndpi_id; //< nDpi worker structure + u_int8_t ip[4]; // Ip address + struct ndpi_id_struct *ndpi_id; // nDpi worker structure } ndpi_id_t; -static u_int32_t size_id_struct = 0; //< ID tracking structure size +static u_int32_t size_id_struct = 0; // ID tracking structure size #ifndef ETH_P_IP #define ETH_P_IP 0x0800 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); |