blob: 04d1bfea03c2cbd9ba4a9c2575e44ef1e9766cd1 [file] [log] [blame]
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -07001#ifndef _XT_U32_H
2#define _XT_U32_H 1
3
Jan Engelhardt06988b02011-01-20 17:50:17 +01004#include <linux/types.h>
5
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -07006enum xt_u32_ops {
7 XT_U32_AND,
8 XT_U32_LEFTSH,
9 XT_U32_RIGHTSH,
10 XT_U32_AT,
11};
12
13struct xt_u32_location_element {
Jan Engelhardtf1c72222010-12-15 22:58:53 +010014 __u32 number;
15 __u8 nextop;
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -070016};
17
18struct xt_u32_value_element {
Jan Engelhardtf1c72222010-12-15 22:58:53 +010019 __u32 min;
20 __u32 max;
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -070021};
22
23/*
24 * Any way to allow for an arbitrary number of elements?
25 * For now, I settle with a limit of 10 each.
26 */
27#define XT_U32_MAXSIZE 10
28
29struct xt_u32_test {
30 struct xt_u32_location_element location[XT_U32_MAXSIZE+1];
31 struct xt_u32_value_element value[XT_U32_MAXSIZE+1];
Jan Engelhardtf1c72222010-12-15 22:58:53 +010032 __u8 nnums;
33 __u8 nvalues;
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -070034};
35
36struct xt_u32 {
37 struct xt_u32_test tests[XT_U32_MAXSIZE+1];
Jan Engelhardtf1c72222010-12-15 22:58:53 +010038 __u8 ntests;
39 __u8 invert;
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -070040};
41
42#endif /* _XT_U32_H */