Skip to content

Commit

Permalink
Revert "snabb ipfix probe: add --timeline option to CLI"
Browse files Browse the repository at this point in the history
This reverts commit a6fe6dc.
  • Loading branch information
eugeneia committed Mar 15, 2023
1 parent 50cad00 commit f805e81
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/program/ipfix/probe/probe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ local long_opts = {
busywait ="b",
["real-time"] = "r",
["no-profile"] = "p",
["timeline"] = "t",
["test-pcap"] = "T"
}
local opt = "hn:brptT:"
local opt = "hn:brpT:"
local opt_handler = {}
local name
local busywait, real_time, profile = false, false, true
Expand All @@ -35,8 +34,6 @@ function opt_handler.n (arg) name = arg end
function opt_handler.b () busywait = true end
function opt_handler.r () real_time = true end
function opt_handler.p () profile = false end
local timeline = false
function opt_handler.t () timeline = true end
local pcap_input
function opt_handler.T (arg) pcap_input = arg end

Expand Down Expand Up @@ -100,7 +97,6 @@ function start (name, confpath)
busywait = busywait,
real_time = real_time,
profile = profile,
timeline = timeline,
group_freelist_size = update_group_freelist_size(
conf.snabbflow_config.rss.software_scaling.group_freelist_size
),
Expand Down

0 comments on commit f805e81

Please sign in to comment.