output: Remove unused variables/define

pull/5257/head
Jeff Lucovsky 5 years ago committed by Victor Julien
parent 92e2e2ec8d
commit 1b791f34a5

@ -55,7 +55,6 @@ typedef struct LogDHCPFileCtx_ {
typedef struct LogDHCPLogThread_ { typedef struct LogDHCPLogThread_ {
LogDHCPFileCtx *dhcplog_ctx; LogDHCPFileCtx *dhcplog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogDHCPLogThread; } LogDHCPLogThread;

@ -266,8 +266,6 @@ typedef struct LogDnsFileCtx_ {
typedef struct LogDnsLogThread_ { typedef struct LogDnsLogThread_ {
LogDnsFileCtx *dnslog_ctx; LogDnsFileCtx *dnslog_ctx;
/** LogFileCtx has the pointer to the file and a mutex to allow multithreading */ /** LogFileCtx has the pointer to the file and a mutex to allow multithreading */
uint32_t dns_cnt;
MemBuffer *buffer; MemBuffer *buffer;
} LogDnsLogThread; } LogDnsLogThread;

@ -55,7 +55,6 @@ typedef struct LogFTPFileCtx_ {
typedef struct LogFTPLogThread_ { typedef struct LogFTPLogThread_ {
LogFTPFileCtx *ftplog_ctx; LogFTPFileCtx *ftplog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogFTPLogThread; } LogFTPLogThread;

@ -65,8 +65,6 @@
#define MODULE_NAME "JsonMetadataLog" #define MODULE_NAME "JsonMetadataLog"
#define JSON_STREAM_BUFFER_SIZE 4096
typedef struct MetadataJsonOutputCtx_ { typedef struct MetadataJsonOutputCtx_ {
LogFileCtx* file_ctx; LogFileCtx* file_ctx;
OutputJsonCommonSettings cfg; OutputJsonCommonSettings cfg;

@ -51,7 +51,6 @@ typedef struct LogRdpFileCtx_ {
typedef struct LogRdpLogThread_ { typedef struct LogRdpLogThread_ {
LogRdpFileCtx *rdplog_ctx; LogRdpFileCtx *rdplog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogRdpLogThread; } LogRdpLogThread;

@ -53,7 +53,6 @@ typedef struct LogRFBFileCtx_ {
typedef struct LogRFBLogThread_ { typedef struct LogRFBLogThread_ {
LogRFBFileCtx *rfblog_ctx; LogRFBFileCtx *rfblog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogRFBLogThread; } LogRFBLogThread;

@ -61,7 +61,6 @@ typedef struct LogTemplateFileCtx_ {
typedef struct LogTemplateLogThread_ { typedef struct LogTemplateLogThread_ {
LogTemplateFileCtx *templatelog_ctx; LogTemplateFileCtx *templatelog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogTemplateLogThread; } LogTemplateLogThread;

@ -60,7 +60,6 @@ typedef struct LogTemplateFileCtx_ {
typedef struct LogTemplateLogThread_ { typedef struct LogTemplateLogThread_ {
LogTemplateFileCtx *templatelog_ctx; LogTemplateFileCtx *templatelog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogTemplateLogThread; } LogTemplateLogThread;

@ -58,7 +58,6 @@ typedef struct LogTFTPFileCtx_ {
typedef struct LogTFTPLogThread_ { typedef struct LogTFTPLogThread_ {
LogTFTPFileCtx *tftplog_ctx; LogTFTPFileCtx *tftplog_ctx;
uint32_t count;
MemBuffer *buffer; MemBuffer *buffer;
} LogTFTPLogThread; } LogTFTPLogThread;

Loading…
Cancel
Save