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
30 uint64_t count;
31 uint64_t packets;
32 uint64_t bytes;
33};
34
35typedef int (*BypassedCheckFunc)(ThreadVars *th_v,
36 struct flows_stats *bypassstats,
37 struct timespec *curtime, void *data);
38typedef int (*BypassedCheckFuncInit)(ThreadVars *th_v,
39 struct timespec *curtime, void *data);
40typedef int (*BypassedUpdateFunc)(Flow *f, Packet *p, void *data);
41
44
46 BypassedCheckFuncInit CheckFuncInit, void *data);
48
49void BypassedFlowUpdate(Flow *f, Packet *p);
50
51#endif
52
53
void BypassedFlowManagerThreadSpawn(void)
spawn the flow bypass manager thread
void BypassedFlowUpdate(Flow *f, Packet *p)
int(* BypassedCheckFuncInit)(ThreadVars *th_v, struct timespec *curtime, void *data)
Definition flow-bypass.h:38
void TmModuleBypassedFlowManagerRegister(void)
int(* BypassedCheckFunc)(ThreadVars *th_v, struct flows_stats *bypassstats, struct timespec *curtime, void *data)
Definition flow-bypass.h:35
int BypassedFlowManagerRegisterUpdateFunc(BypassedUpdateFunc UpdateFunc, void *data)
int BypassedFlowManagerRegisterCheckFunc(BypassedCheckFunc CheckFunc, BypassedCheckFuncInit CheckFuncInit, void *data)
int(* BypassedUpdateFunc)(Flow *f, Packet *p, void *data)
Definition flow-bypass.h:40
Flow data structure.
Definition flow.h:356
Per thread variable structure.
Definition threadvars.h:58
uint64_t bytes
Definition flow-bypass.h:32
uint64_t count
Definition flow-bypass.h:30
uint64_t packets
Definition flow-bypass.h:31