]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
capture: multidev is not experimental
authorVictor Julien <victor@inliniac.net>
Mon, 22 Oct 2018 06:59:44 +0000 (08:59 +0200)
committerVictor Julien <victor@inliniac.net>
Mon, 22 Oct 2018 06:59:44 +0000 (08:59 +0200)
src/suricata.c

index e22e0a9cef06161fdd0e2dbf1e553856335be3bb..a0837ba7c82f3eeee74c7d95e28368627da0103a 100644 (file)
@@ -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 {