aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4/ipt_string.h
blob: a265f6e44eabc0f54d27a8062b9803d5ff21a2c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _IPT_STRING_H
#define _IPT_STRING_H

#define IPT_STRING_MAX_PATTERN_SIZE 128
#define IPT_STRING_MAX_ALGO_NAME_SIZE 16

struct ipt_string_info
{
	u_int16_t from_offset;
	u_int16_t to_offset;
	char	  algo[IPT_STRING_MAX_ALGO_NAME_SIZE];
	char 	  pattern[IPT_STRING_MAX_PATTERN_SIZE];
	u_int8_t  patlen;
	u_int8_t  invert;
	struct ts_config __attribute__((aligned(8))) *config;
};

#endif /*_IPT_STRING_H*/