aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.tapping
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-04-09 12:11:26 +0800
committerGerald Combs <gerald@wireshark.org>2018-04-09 05:02:12 +0000
commit974a15bf74df43e1d431bec84d5043ef8b8059df (patch)
treef747479bca4ad5d29c9e6439fcf85692ade7f531 /doc/README.tapping
parent8b93e6d6a2475b2e8072acaf8b7f63f6b5bff98d (diff)
Docs: Remove a bunch of GTK+ references.
Change-Id: Icab98813d0b81a7337562e9857429d4bb98dc44c Reviewed-on: https://code.wireshark.org/review/26817 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'doc/README.tapping')
-rw-r--r--doc/README.tapping4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.tapping b/doc/README.tapping
index 56b7a4ba1c..5c62a475f0 100644
--- a/doc/README.tapping
+++ b/doc/README.tapping
@@ -5,7 +5,7 @@ internals are required.
As examples on how to use the tap system see the implementation of
tap-rpcstat.c (tshark version)
-gtk/rpc_stat.c (gtk-wireshark version)
+ui/qt/rpc_service_response_time_dialog.cpp (wireshark version)
If all you need is to keep some counters, there's the stats_tree API,
which offers a simple way to make a GUI and tshark tap-listener; see
@@ -151,7 +151,7 @@ void (*draw)(void *tapdata)
This callback is used when Wireshark wants your application to redraw its
output. It will usually not be called unless your application has received
new data through the (*packet) callback.
-On some ports of Wireshark (gtk2) (*draw) will be called asynchronously
+On some ports of Wireshark (Qt) (*draw) will be called asynchronously
from a separate thread up to once every 2-3 seconds.
On other ports it might only be called once when the capture is finished
or the file has been [re]read completely.