runmodes: remove obsolete references to pcap auto modes

These auto modes were remove many years ago. Also cleanup the wording
a little.

Task: #6427
pull/9714/head
Jason Ish 2 years ago committed by Victor Julien
parent f363b99fd7
commit 804c5b737b

@ -42,11 +42,8 @@ void RunModeFilePcapRegister(void)
RunModeRegisterNewRunMode(RUNMODE_PCAP_FILE, "single", "Single threaded pcap file mode", RunModeRegisterNewRunMode(RUNMODE_PCAP_FILE, "single", "Single threaded pcap file mode",
RunModeFilePcapSingle, NULL); RunModeFilePcapSingle, NULL);
RunModeRegisterNewRunMode(RUNMODE_PCAP_FILE, "autofp", RunModeRegisterNewRunMode(RUNMODE_PCAP_FILE, "autofp",
"Multi threaded pcap file mode. Packets from " "Multi-threaded pcap file mode. Packets from each flow are assigned to a consistent "
"each flow are assigned to a single detect thread, " "detection thread",
"unlike \"pcap-file-auto\" where packets from "
"the same flow can be processed by any detect "
"thread",
RunModeFilePcapAutoFp, NULL); RunModeFilePcapAutoFp, NULL);
return; return;

@ -41,11 +41,8 @@ void RunModeIdsPcapRegister(void)
RunModeRegisterNewRunMode(RUNMODE_PCAP_DEV, "single", "Single threaded pcap live mode", RunModeRegisterNewRunMode(RUNMODE_PCAP_DEV, "single", "Single threaded pcap live mode",
RunModeIdsPcapSingle, NULL); RunModeIdsPcapSingle, NULL);
RunModeRegisterNewRunMode(RUNMODE_PCAP_DEV, "autofp", RunModeRegisterNewRunMode(RUNMODE_PCAP_DEV, "autofp",
"Multi threaded pcap live mode. Packets from " "Multi-threaded pcap live mode. Packets from each flow are assigned to a consistent "
"each flow are assigned to a single detect thread, " "detection thread",
"unlike \"pcap_live_auto\" where packets from "
"the same flow can be processed by any detect "
"thread",
RunModeIdsPcapAutoFp, NULL); RunModeIdsPcapAutoFp, NULL);
RunModeRegisterNewRunMode(RUNMODE_PCAP_DEV, "workers", RunModeRegisterNewRunMode(RUNMODE_PCAP_DEV, "workers",
"Workers pcap live mode, each thread does all" "Workers pcap live mode, each thread does all"

Loading…
Cancel
Save