From: Victor Julien Date: Mon, 22 Oct 2018 06:59:44 +0000 (+0200) Subject: capture: multidev is not experimental X-Git-Tag: suricata-4.1.0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=215e37a9c0fa18887fb9a66f6136bd08a1a9eb9d;p=thirdparty%2Fsuricata.git capture: multidev is not experimental --- diff --git a/src/suricata.c b/src/suricata.c index e22e0a9cef..a0837ba7c8 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -1119,8 +1119,6 @@ static int ParseCommandLineAfpacket(SCInstance *suri, const char *in_arg) strlcpy(suri->pcap_dev, in_arg, sizeof(suri->pcap_dev)); } } else if (suri->run_mode == RUNMODE_AFP_DEV) { - SCLogWarning(SC_WARN_PCAP_MULTI_DEV_EXPERIMENTAL, "using " - "multiple devices to get packets is experimental."); if (in_arg) { LiveRegisterDeviceName(in_arg); } else { @@ -1174,8 +1172,6 @@ static int ParseCommandLinePcapLive(SCInstance *suri, const char *in_arg) "support is not (yet) supported on Windows."); return TM_ECODE_FAILED; #else - SCLogWarning(SC_WARN_PCAP_MULTI_DEV_EXPERIMENTAL, "using " - "multiple pcap devices to get packets is experimental."); LiveRegisterDeviceName(suri->pcap_dev); #endif } else { @@ -1623,8 +1619,6 @@ static TmEcode ParseCommandLine(int argc, char** argv, SCInstance *suri) (strlen(optarg) + 1) : sizeof(suri->pcap_dev))); } } else if (suri->run_mode == RUNMODE_NETMAP) { - SCLogWarning(SC_WARN_PCAP_MULTI_DEV_EXPERIMENTAL, "using " - "multiple devices to get packets is experimental."); if (optarg) { LiveRegisterDeviceName(optarg); } else {