aboutsummaryrefslogtreecommitdiffstats
path: root/docbook/wsluarm.asciidoc
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2018-03-23 18:05:13 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2018-03-23 19:41:21 +0000
commite80437661246638ece4037221196069db9249a93 (patch)
tree16bb8da27966ce3ba5225791dab65c6b79d7a86d /docbook/wsluarm.asciidoc
parentcf5f77aca2036635f9271c56e478a8a22895e736 (diff)
docs: improve Lua Listener example
Ensure the dialog is populated when the dialog is opened after a capture file has already been loaded. Change-Id: I9ba1b4a1eb7a8b21ce7dac4a820eadf10daa9845 Reviewed-on: https://code.wireshark.org/review/26601 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'docbook/wsluarm.asciidoc')
-rw-r--r--docbook/wsluarm.asciidoc5
1 files changed, 4 insertions, 1 deletions
diff --git a/docbook/wsluarm.asciidoc b/docbook/wsluarm.asciidoc
index d7c559a561..ab3c96bf88 100644
--- a/docbook/wsluarm.asciidoc
+++ b/docbook/wsluarm.asciidoc
@@ -127,7 +127,7 @@ local function menuable_tap()
-- this is our tap
local tap = Listener.new();
- function remove()
+ local function remove()
-- this way we remove the listener that otherwise will remain running indefinitely
tap:remove();
end
@@ -158,6 +158,9 @@ local function menuable_tap()
tw:clear()
ips = {}
end
+
+ -- Ensure that all existing packets are processed.
+ retap_packets()
end
-- using this function we register our function