aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-12-10 16:21:41 -0800
committerGuy Harris <guy@alum.mit.edu>2014-12-11 00:23:06 +0000
commit144855ce6df8e5934c00ae3729eed708406c39b2 (patch)
tree7307d95d216a2e9f01edba4a7d6d6676426989c2 /epan/packet.h
parent2f8030f85a0bfc584deee00a88761355ddd7f941 (diff)
Fix a comment.
Change-Id: I46885d028fe9ff5254baefc15283626b9bdb6bce Reviewed-on: https://code.wireshark.org/review/5711 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/epan/packet.h b/epan/packet.h
index aa3e8f4aa9..a7c66dcbc0 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -184,15 +184,14 @@ WS_DLL_PUBLIC void dissector_all_tables_foreach_changed (DATFunc func,
WS_DLL_PUBLIC void dissector_table_foreach_handle(const char *table_name, DATFunc_handle func,
gpointer user_data);
-/** Iterate over dissectors in a table matching against a given function.
+/** Iterate over all dissector tables.
*
* Walk all dissector tables calling a user supplied function on each
* table.
- * @param[in] func The function to call for each dissector.
+ * @param[in] func The function to call for each table.
* @param[in] user_data User data to pass to the function.
- * @param[in] compare_key_func Hash table key comparison function. All entries
- * are matched if NULL.
- */
+ * @param[in] compare_key_func Function used to sort tables before calling
+ * the function. No sorting is done if NULL. */
WS_DLL_PUBLIC void dissector_all_tables_foreach_table (DATFunc_table func,
gpointer user_data, GCompareFunc compare_key_func);