srt_table(.h): fix api reference
authorAlexis La Goutte <alexis.lagoutte@gmail.com>
Mon, 2 Nov 2015 08:48:13 +0000 (09:48 +0100)
committerAnders Broman <a.broman58@gmail.com>
Mon, 2 Nov 2015 11:40:07 +0000 (11:40 +0000)
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>
epan/srt_table.h

index 2910e86ce36ab741673868c6525d514d7fdfb1e0..63159db4b471ecf1f2003dc9fe79b356169256ec 100644 (file)
@@ -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,