suricata
flow-bypass.h
Go to the documentation of this file.
1 /* Copyright (C) 2016-2018 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 Eric Leblond <eleblond@stamus-networks.com>
22  */
23 
24 #ifndef SURICATA_FLOW_BYPASS_H
25 #define SURICATA_FLOW_BYPASS_H
26 
27 #include "flow.h"
28 
29 struct flows_stats {
30  uint64_t count;
31  uint64_t packets;
32  uint64_t bytes;
33 };
34 
35 typedef int (*BypassedCheckFunc)(ThreadVars *th_v,
36  struct flows_stats *bypassstats,
37  struct timespec *curtime, void *data);
38 typedef int (*BypassedCheckFuncInit)(ThreadVars *th_v,
39  struct timespec *curtime, void *data);
40 typedef int (*BypassedUpdateFunc)(Flow *f, Packet *p, void *data);
41 
44 
46  BypassedCheckFuncInit CheckFuncInit, void *data);
48 
49 void BypassedFlowUpdate(Flow *f, Packet *p);
50 
51 #endif
52 
53 
TmModuleBypassedFlowManagerRegister
void TmModuleBypassedFlowManagerRegister(void)
Definition: flow-bypass.c:222
flows_stats::count
uint64_t count
Definition: flow-bypass.h:30
Flow_
Flow data structure.
Definition: flow.h:351
BypassedFlowManagerThreadSpawn
void BypassedFlowManagerThreadSpawn(void)
spawn the flow bypass manager thread
Definition: flow-bypass.c:191
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:57
BypassedCheckFunc
int(* BypassedCheckFunc)(ThreadVars *th_v, struct flows_stats *bypassstats, struct timespec *curtime, void *data)
Definition: flow-bypass.h:35
Packet_
Definition: decode.h:437
BypassedFlowUpdate
void BypassedFlowUpdate(Flow *f, Packet *p)
Definition: flow-bypass.c:211
flows_stats::bytes
uint64_t bytes
Definition: flow-bypass.h:32
BypassedCheckFuncInit
int(* BypassedCheckFuncInit)(ThreadVars *th_v, struct timespec *curtime, void *data)
Definition: flow-bypass.h:38
BypassedFlowManagerRegisterUpdateFunc
int BypassedFlowManagerRegisterUpdateFunc(BypassedUpdateFunc UpdateFunc, void *data)
flow.h
BypassedUpdateFunc
int(* BypassedUpdateFunc)(Flow *f, Packet *p, void *data)
Definition: flow-bypass.h:40
BypassedFlowManagerRegisterCheckFunc
int BypassedFlowManagerRegisterCheckFunc(BypassedCheckFunc CheckFunc, BypassedCheckFuncInit CheckFuncInit, void *data)
flows_stats::packets
uint64_t packets
Definition: flow-bypass.h:31
flows_stats
Definition: flow-bypass.h:29