aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation_table.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-11-05 10:08:12 +0100
committerMichael Mann <mmann78@netscape.net>2017-11-05 13:30:25 +0000
commitff3bd8c7ce5197ec533c8115a96655a4829d9c82 (patch)
treeaa224785a44c608bbe318f90ca9e0407099b91fa /epan/conversation_table.h
parent72c2e53981a204d746737d8c01c4ad3738cd4880 (diff)
conversation_table(.h): fix parameter 'ptype/port_type_val' not found in the function declaration [-Wdocumentation]
Oups not good fix last time... Change-Id: I55f565a8d4dde83304a8437be3dc35c2fad1fb07 Reviewed-on: https://code.wireshark.org/review/24249 Tested-by: Petri Dish Buildbot Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
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 30dc3b6c17..a515994ca4 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 eptype the port type (e.g. PT_TCP)
+ * @param etype 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 eptype the port type (e.g. PT_TCP)
+ * @param etype 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 eport the port type (e.g. PT_TCP)
+ * @param etype 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);