suricata
output-packet.h
Go to the documentation of this file.
1
/* Copyright (C) 2007-2013 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
* Packet Logger Output registration functions
24
*/
25
26
#ifndef __OUTPUT_PACKET_H__
27
#define __OUTPUT_PACKET_H__
28
29
/** packet logger function pointer type */
30
typedef
int (*
PacketLogger
)(
ThreadVars
*,
void
*thread_data,
const
Packet
*);
31
32
/** packet logger condition function pointer type,
33
* must return true for packets that should be logged
34
*/
35
typedef
int (*
PacketLogCondition
)(
ThreadVars
*,
void
*thread_data,
const
Packet
*);
36
37
int
OutputRegisterPacketLogger
(
LoggerId
logger_id
,
const
char
*
name
,
38
PacketLogger
LogFunc
,
PacketLogCondition
ConditionFunc
,
OutputCtx
*,
39
ThreadInitFunc
,
ThreadDeinitFunc
,
ThreadExitPrintStatsFunc
);
40
41
void
OutputPacketLoggerRegister
(
void
);
42
43
void
OutputPacketShutdown
(
void
);
44
45
#endif
/* __OUTPUT_PACKET_H__ */
OutputPacketLoggerRegister
void OutputPacketLoggerRegister(void)
Definition:
output-packet.c:216
OutputPacketShutdown
void OutputPacketShutdown(void)
Definition:
output-packet.c:223
LoggerId
LoggerId
Definition:
suricata-common.h:455
PacketLogger
int(* PacketLogger)(ThreadVars *, void *thread_data, const Packet *)
Definition:
output-packet.h:30
OutputCtx_
Definition:
tm-modules.h:84
ThreadVars_
Per thread variable structure.
Definition:
threadvars.h:57
ThreadInitFunc
TmEcode(* ThreadInitFunc)(ThreadVars *, const void *, void **)
Definition:
tm-modules.h:39
OutputPacketLogger_::ConditionFunc
PacketLogCondition ConditionFunc
Definition:
output-packet.c:43
Packet_
Definition:
decode.h:430
OutputPacketLogger_::name
const char * name
Definition:
output-packet.c:46
OutputRegisterPacketLogger
int OutputRegisterPacketLogger(LoggerId logger_id, const char *name, PacketLogger LogFunc, PacketLogCondition ConditionFunc, OutputCtx *, ThreadInitFunc, ThreadDeinitFunc, ThreadExitPrintStatsFunc)
Definition:
output-packet.c:55
ThreadExitPrintStatsFunc
void(* ThreadExitPrintStatsFunc)(ThreadVars *, void *)
Definition:
tm-modules.h:41
PacketLogCondition
int(* PacketLogCondition)(ThreadVars *, void *thread_data, const Packet *)
Definition:
output-packet.h:35
OutputPacketLogger_::LogFunc
PacketLogger LogFunc
Definition:
output-packet.c:42
ThreadDeinitFunc
TmEcode(* ThreadDeinitFunc)(ThreadVars *, void *)
Definition:
tm-modules.h:40
OutputPacketLogger_::logger_id
LoggerId logger_id
Definition:
output-packet.c:47
src
output-packet.h
Generated on Fri Sep 22 2023 23:30:37 for suricata by
1.8.18