suricata
output-streaming.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2022 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Victor Julien <victor@inliniac.net>
22  *
23  * Streaming Logger Output registration functions
24  */
25 
26 #ifndef SURICATA_OUTPUT_STREAMING_H
27 #define SURICATA_OUTPUT_STREAMING_H
28 
29 #define OUTPUT_STREAMING_FLAG_OPEN 0x01
30 #define OUTPUT_STREAMING_FLAG_CLOSE 0x02
31 #define OUTPUT_STREAMING_FLAG_TOSERVER 0x04
32 #define OUTPUT_STREAMING_FLAG_TOCLIENT 0x08
33 #define OUTPUT_STREAMING_FLAG_TRANSACTION 0x10
34 
38 };
39 
40 /** streaming logger function pointer type */
41 typedef int (*StreamingLogger)(ThreadVars *, void *thread_data,
42  const Flow *f, const uint8_t *data, uint32_t data_len,
43  uint64_t tx_id, uint8_t flags);
44 
45 int OutputRegisterStreamingLogger(LoggerId id, const char *name,
47  ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit,
48  ThreadExitPrintStatsFunc ThreadExitPrintStats);
49 
51 
52 void OutputStreamingShutdown(void);
53 
54 #endif /* SURICATA_OUTPUT_STREAMING_H */
OutputStreamingLoggerRegister
void OutputStreamingLoggerRegister(void)
Definition: output-streaming.c:453
Flow_
Flow data structure.
Definition: flow.h:351
StreamingLogger
int(* StreamingLogger)(ThreadVars *, void *thread_data, const Flow *f, const uint8_t *data, uint32_t data_len, uint64_t tx_id, uint8_t flags)
Definition: output-streaming.h:41
LoggerId
LoggerId
Definition: suricata-common.h:460
OutputCtx_
Definition: tm-modules.h:85
OutputRegisterStreamingLogger
int OutputRegisterStreamingLogger(LoggerId id, const char *name, StreamingLogger LogFunc, OutputCtx *, enum OutputStreamingType, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats)
Definition: output-streaming.c:64
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:57
ThreadInitFunc
TmEcode(* ThreadInitFunc)(ThreadVars *, const void *, void **)
Definition: tm-modules.h:40
StreamLogData::f
Flow * f
Definition: output-streaming.c:251
flags
uint8_t flags
Definition: decode-gre.h:0
STREAMING_HTTP_BODIES
@ STREAMING_HTTP_BODIES
Definition: output-streaming.h:37
ThreadExitPrintStatsFunc
void(* ThreadExitPrintStatsFunc)(ThreadVars *, void *)
Definition: tm-modules.h:42
OutputStreamingType
OutputStreamingType
Definition: output-streaming.h:35
STREAMING_TCP_DATA
@ STREAMING_TCP_DATA
Definition: output-streaming.h:36
OutputStreamingShutdown
void OutputStreamingShutdown(void)
Definition: output-streaming.c:459
ThreadDeinitFunc
TmEcode(* ThreadDeinitFunc)(ThreadVars *, void *)
Definition: tm-modules.h:41