Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xt_hashlimit.h
Go to the documentation of this file.
1 #ifndef _UAPI_XT_HASHLIMIT_H
2 #define _UAPI_XT_HASHLIMIT_H
3 
4 #include <linux/types.h>
5 
6 /* timings are in milliseconds. */
7 #define XT_HASHLIMIT_SCALE 10000
8 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
9  * seconds, or one packet every 59 hours.
10  */
11 
12 /* packet length accounting is done in 16-byte steps */
13 #define XT_HASHLIMIT_BYTE_SHIFT 4
14 
15 /* details of this structure hidden by the implementation */
16 struct xt_hashlimit_htable;
17 
18 enum {
25 };
26 
27 struct hashlimit_cfg {
28  __u32 mode; /* bitmask of XT_HASHLIMIT_HASH_* */
29  __u32 avg; /* Average secs between packets * scale */
30  __u32 burst; /* Period multiplier for upper limit. */
31 
32  /* user specified */
33  __u32 size; /* how many buckets */
34  __u32 max; /* max number of entries */
35  __u32 gc_interval; /* gc interval */
36  __u32 expire; /* when do entries expire? */
37 };
38 
40  char name [IFNAMSIZ]; /* name */
42 
43  /* Used internally by the kernel */
45  union {
46  void *ptr;
48  } u;
49 };
50 
52  __u32 mode; /* bitmask of XT_HASHLIMIT_HASH_* */
53  __u32 avg; /* Average secs between packets * scale */
54  __u32 burst; /* Period multiplier for upper limit. */
55 
56  /* user specified */
57  __u32 size; /* how many buckets */
58  __u32 max; /* max number of entries */
59  __u32 gc_interval; /* gc interval */
60  __u32 expire; /* when do entries expire? */
61 
63 };
64 
66  char name[IFNAMSIZ];
68 
69  /* Used internally by the kernel */
70  struct xt_hashlimit_htable *hinfo __attribute__((aligned(8)));
71 };
72 
73 #endif /* _UAPI_XT_HASHLIMIT_H */