aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-11-02 09:48:13 +0100
committerAnders Broman <a.broman58@gmail.com>2015-11-02 11:40:07 +0000
commit7f10520d0442a51fc9747d702b144592b4915964 (patch)
tree8abf38188b5a2b651b4873bee7b8c216533a46c9 /epan
parent4a8b20a9a90696e2c1828fa9accd80e907f70f40 (diff)
srt_table(.h): fix api reference
The following parameters of register_srt_table(const int proto_id, const char *tap_listener, int max_tables, tap_packet_cb srt_packet_func, srt_init_cb init_cb, srt_param_handler_cb param_cb) are not documented: parameter 'max_tables' The following parameters of init_srt_table(const char *name, const char *short_name, GArray *srt_array, int num_procs, const char *proc_column_name, const char *filter_string, srt_gui_init_cb gui_callback, void *gui_data, void *table_specific_data) are not documented: parameter 'table_specific_data' Change-Id: I7c14a46c89c58985a5000b1760ba088d9f0da293 Reviewed-on: https://code.wireshark.org/review/11491 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/srt_table.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/srt_table.h b/epan/srt_table.h
index 2910e86ce3..63159db4b4 100644
--- a/epan/srt_table.h
+++ b/epan/srt_table.h
@@ -72,6 +72,7 @@ typedef struct register_srt register_srt_t;
*
* @param proto_id is the protocol with conversation
* @param tap_listener string for register_tap_listener (NULL to just use protocol name)
+ * @param max_tables maximum number of tables
* @param srt_packet_func the tap processing function
* @param init_cb initialize dissector SRT function
* @param param_cb handles dissection of parameters to optional arguments of tap string
@@ -196,6 +197,7 @@ WS_DLL_PUBLIC gchar* srt_table_get_tap_string(register_srt_t* srt);
* @param filter_string table filter string or NULL
* @param gui_callback optional GUI callback
* @param gui_data GUI content data
+ * @param table_specific_data Table specific data
* @return newly created srt_stat_table
*/
WS_DLL_PUBLIC srt_stat_table* init_srt_table(const char *name, const char *short_name, GArray *srt_array, int num_procs, const char* proc_column_name,