aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation_table.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-10-31 07:14:55 +0000
committerAnders Broman <a.broman58@gmail.com>2017-10-31 09:27:35 +0000
commitc5165f325b6742f407a951f9c7d959314f15a6b5 (patch)
treeffcb0e87f96a996371597e5003d2f1f4b8603e69 /epan/conversation_table.h
parentec43b0faa6d8106205073c7c8596ed7ae4c64abc (diff)
conversation_table(.h): fix parameter 'ptype/port_type_val' not found in the function declaration [-Wdocumentation]
Change-Id: Iea18cc73d28af68e14f7b9516b630b0987fe5731 Reviewed-on: https://code.wireshark.org/review/24195 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/conversation_table.h')
-rw-r--r--epan/conversation_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/conversation_table.h b/epan/conversation_table.h
index 25f8bbb488..30dc3b6c17 100644
--- a/epan/conversation_table.h
+++ b/epan/conversation_table.h
@@ -291,7 +291,7 @@ WS_DLL_PUBLIC char *get_hostlist_filter(hostlist_talker_t *host);
* @param ts timestamp
* @param abs_ts absolute timestamp
* @param ct_info callback handlers from the dissector
- * @param ptype the port type (e.g. PT_TCP)
+ * @param eptype the port type (e.g. PT_TCP)
*/
WS_DLL_PUBLIC void add_conversation_table_data(conv_hash_t *ch, const address *src, const address *dst,
guint32 src_port, guint32 dst_port, int num_frames, int num_bytes, nstime_t *ts, nstime_t *abs_ts,
@@ -311,7 +311,7 @@ WS_DLL_PUBLIC void add_conversation_table_data(conv_hash_t *ch, const address *s
* @param ts timestamp
* @param abs_ts absolute timestamp
* @param ct_info callback handlers from the dissector
- * @param ptype the port type (e.g. PT_TCP)
+ * @param eptype the port type (e.g. PT_TCP)
* @param conv_id a value to help differentiate the conversation in case the address and port quadruple is not sufficiently unique
*/
WS_DLL_PUBLIC void
@@ -328,7 +328,7 @@ add_conversation_table_data_with_conv_id(conv_hash_t *ch, const address *src, co
* @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)
+ * @param eport the port type (e.g. PT_TCP)
*/
WS_DLL_PUBLIC 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, endpoint_type etype);