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 <eapache@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-11-25 12:37:59 +01:00 committed by Evan Huus
parent 2ebaa59a3b
commit f449be8e6b
1 changed files with 2 additions and 0 deletions

View File

@ -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);