blob: e77e14d2e89b78288e4a55ee787e44cf8c40a125 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | --- a/extensions/compat_xtables.h
+++ b/extensions/compat_xtables.h
@@ -57,4 +57,11 @@
 
 #define xt_request_find_match xtnu_request_find_match
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
+static inline void proc_net_remove(struct net *net, const char *name)
+{
+       remove_proc_entry(name, net->proc_net);
+}
+#endif
+
 #endif /* _XTABLES_COMPAT_H */
 |