dofile("console.lua")
run_console()
-- whenever a .pcap file finishes loading, set the display filter to this default
do
local reset_only_once = 1
Listener.new().reset = function(a)
if reset_only_once == 1 then
reset_only_once = 0
set_filter("rtsp_response")
apply_filter()
end
end
end