suricata
|
#include "tm-modules.h"
Go to the source code of this file.
Typedefs | |
typedef int(* | FlowLogger) (ThreadVars *, void *thread_data, Flow *f) |
Functions | |
int | OutputRegisterFlowLogger (const char *name, FlowLogger LogFunc, OutputCtx *, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats) |
void | OutputFlowShutdown (void) |
TmEcode | OutputFlowLog (ThreadVars *tv, void *thread_data, Flow *f) |
Run flow logger(s) More... | |
TmEcode | OutputFlowLogThreadInit (ThreadVars *tv, void *initdata, void **data) |
thread init for the flow logger This will run the thread init functions for the individual registered loggers More... | |
TmEcode | OutputFlowLogThreadDeinit (ThreadVars *tv, void *thread_data) |
void | OutputFlowLogExitPrintStats (ThreadVars *tv, void *thread_data) |
Flow Logger Output registration functions
Definition in file output-flow.h.
typedef int(* FlowLogger) (ThreadVars *, void *thread_data, Flow *f) |
flow logger function pointer type
Definition at line 32 of file output-flow.h.
TmEcode OutputFlowLog | ( | ThreadVars * | tv, |
void * | thread_data, | ||
Flow * | f | ||
) |
Run flow logger(s)
Definition at line 86 of file output-flow.c.
References DEBUG_VALIDATE_BUG_ON.
void OutputFlowLogExitPrintStats | ( | ThreadVars * | tv, |
void * | thread_data | ||
) |
Definition at line 190 of file output-flow.c.
References OutputFlowLoggerThreadData_::store.
TmEcode OutputFlowLogThreadDeinit | ( | ThreadVars * | tv, |
void * | thread_data | ||
) |
Definition at line 166 of file output-flow.c.
References OutputFlowLoggerThreadData_::store, and TM_ECODE_OK.
Referenced by DecodeThreadVarsFree().
TmEcode OutputFlowLogThreadInit | ( | ThreadVars * | tv, |
void * | initdata, | ||
void ** | data | ||
) |
thread init for the flow logger This will run the thread init functions for the individual registered loggers
Definition at line 124 of file output-flow.c.
References SCLogDebug, SCMalloc, and TM_ECODE_FAILED.
Referenced by DecodeThreadVarsAlloc().
void OutputFlowShutdown | ( | void | ) |
Definition at line 206 of file output-flow.c.
int OutputRegisterFlowLogger | ( | const char * | name, |
FlowLogger | LogFunc, | ||
OutputCtx * | , | ||
ThreadInitFunc | ThreadInit, | ||
ThreadDeinitFunc | ThreadDeinit, | ||
ThreadExitPrintStatsFunc | ThreadExitPrintStats | ||
) |
Definition at line 53 of file output-flow.c.
References OutputFlowLogger_::LogFunc, OutputFlowLogger_::name, OutputFlowLogger_::output_ctx, SCMalloc, OutputFlowLogger_::ThreadDeinit, OutputFlowLogger_::ThreadExitPrintStats, and OutputFlowLogger_::ThreadInit.