summaryrefslogtreecommitdiffstats
path: root/main/ipfw-grsec/ipfw-cgroup.patch
blob: 23942e7a24d8545ac9ebf254ec72d25909d33b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--- ipfw3-2012.orig/glue.h
+++ ipfw3-2012/glue.h
@@ -377,13 +377,29 @@
 #define flow_daddr fl.nl_u.ip4_u
 #endif
 
-#endif /* __linux__ */
-
 /* 
  * Do not load prio_heap.h header because of conflicting names
  * with our heap functions defined in include/netinet/ipfw/dn_heap.h
  */
 #define _LINUX_PRIO_HEAP_H
+
+/* Do however declare the structure... */
+/**
+ * struct ptr_heap - simple static-sized priority heap
+ * @ptrs - pointer to data area
+ * @max - max number of elements that can be stored in @ptrs
+ * @size - current number of valid elements in @ptrs (in the range 0..@size-1
+ * @gt: comparison operator, which should implement "greater than"
+ */
+struct ptr_heap {
+	void **ptrs;
+	int max;
+	int size;
+	int (*gt)(void *, void *);
+};
+
+#endif /* __linux__ */
+
 /* 
  * The following define prevent the ipv6.h header to be loaded.
  * Starting from the 2.6.38 kernel the ipv6.h file, which is included