From f449be8e6b2b1e86c873a93e854ac293dc062eac Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Tue, 25 Nov 2014 12:37:59 +0100 Subject: [PATCH] conversation_table: fix warning when generate documentation (doxygen) epan/conversation_table.h:335: warning: The following parameters of add_hostlist_table_data(conv_hash_t *ch, const address *addr, guint32 port, gboolean sender, int num_frames, int num_bytes, hostlist_dissector_info_t *host_info, port_type port_type_val) are not documented: parameter 'host_info' parameter 'port_type_val' Change-Id: I6c3b29750c856eb2665981553fcb8eecd8fe34ee Reviewed-on: https://code.wireshark.org/review/5482 Reviewed-by: Evan Huus --- epan/conversation_table.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/epan/conversation_table.h b/epan/conversation_table.h index 6de15c7ca3..8b8c587c25 100644 --- a/epan/conversation_table.h +++ b/epan/conversation_table.h @@ -338,6 +338,8 @@ add_conversation_table_data_with_conv_id(conv_hash_t *ch, const address *src, co * @param sender TRUE, if this is a sender * @param num_frames number of packets * @param num_bytes number of bytes + * @param host_info conversation information provided by dissector + * @param port_type_val the port type (e.g. PT_TCP) */ void add_hostlist_table_data(conv_hash_t *ch, const address *addr, guint32 port, gboolean sender, int num_frames, int num_bytes, hostlist_dissector_info_t *host_info, port_type port_type_val);