suricata
detect-fragoffset.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2010 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 Breno Silva <breno.silva@gmail.com>
22  */
23 
24 #ifndef SURICATA_DETECT_FRAGOFFSET_H
25 #define SURICATA_DETECT_FRAGOFFSET_H
26 
27 #define FRAG_LESS 1
28 #define FRAG_MORE 2
29 
30 typedef struct DetectFragOffsetData_ {
31  uint16_t frag_off;
32  uint8_t mode;
34 
35 /* prototypes */
36 void DetectFragOffsetRegister(void);
37 
38 #endif /* SURICATA_DETECT_FRAGOFFSET_H */
DetectFragOffsetData
struct DetectFragOffsetData_ DetectFragOffsetData
DetectFragOffsetRegister
void DetectFragOffsetRegister(void)
Registration function for fragoffset.
Definition: detect-fragoffset.c:60
DetectFragOffsetData_::mode
uint8_t mode
Definition: detect-fragoffset.h:32
DetectFragOffsetData_
Definition: detect-fragoffset.h:30
DetectFragOffsetData_::frag_off
uint16_t frag_off
Definition: detect-fragoffset.h:31