]> git.ipfire.org Git - people/ms/suricata.git/commitdiff
output/log: Removed pcie (Tilera) log vestiges
authorJeff Lucovsky <jeff@lucovsky.org>
Mon, 12 Apr 2021 13:12:23 +0000 (09:12 -0400)
committerVictor Julien <victor@inliniac.net>
Thu, 15 Apr 2021 09:43:29 +0000 (11:43 +0200)
This commit removes the last remnants of the Tilera log output mechanism
(unsupported since 5.0.x).

src/util-logopenfile.c
src/util-logopenfile.h

index b8eee25ed02781fd74ce3a4167cda9b2c43dda4d..0899b8cf3b25296a4c3e5d933a46c438f78811ed 100644 (file)
@@ -576,7 +576,6 @@ SCConfLogOpenGeneric(ConfNode *conf,
     } else {
         SCLogError(SC_ERR_INVALID_YAML_CONF_ENTRY, "Invalid entry for "
                    "%s.filetype.  Expected \"regular\" (default), \"unix_stream\", "
-                   "\"pcie\" "
                    "or \"unix_dgram\"",
                    conf->name);
     }
index cc62802264594a4e60b5465c8d83616d94f99066..58d95d27a13caa042f2667573de2659f2f0316d1 100644 (file)
 
 #include "suricata-plugin.h"
 
-typedef struct {
-    uint16_t fileno;
-} PcieFile;
-
 enum LogFileType { LOGFILE_TYPE_FILE,
                    LOGFILE_TYPE_SYSLOG,
                    LOGFILE_TYPE_UNIX_DGRAM,
@@ -60,7 +56,6 @@ typedef struct LogThreadedFileCtx_ {
 typedef struct LogFileCtx_ {
     union {
         FILE *fp;
-        PcieFile *pcie_fp;
         LogThreadedFileCtx *threads;
         void *plugin_data;
 #ifdef HAVE_LIBHIREDIS