summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2003-12-30 17:29:23 +0000
committerBart De Schuymer <bdschuym@pandora.be>2003-12-30 17:29:23 +0000
commitdb5ae6e9d6c0b775ac1b90c31cb64f939cb3c4d9 (patch)
tree212379ad079b83e20d1af5dd03c903ca943042b3 /include
parent00ea348b53ff619409b4281f5f89cd449874a11e (diff)
Riccardo Murri <murri_at_dmmm.uniroma1.it>: introduce RUNTIME_NF_ARP_NUMHOOKS so arptables can be compiled straight from CVS + add DESTDIR option
Diffstat (limited to 'include')
-rw-r--r--include/arptables.h2
-rw-r--r--include/libarptc/libarptc.h5
2 files changed, 5 insertions, 2 deletions
diff --git a/include/arptables.h b/include/arptables.h
index ed4a549..820b664 100644
--- a/include/arptables.h
+++ b/include/arptables.h
@@ -115,8 +115,6 @@ struct arptables_target
unsigned int loaded; /* simulate loading so options are merged properly */
};
-extern int NF_ARP_NUMHOOKS; /* boy, this is dirty */
-
/* Your shared library should call one of these. */
extern void register_match(struct arptables_match *me);
extern void register_target(struct arptables_target *me);
diff --git a/include/libarptc/libarptc.h b/include/libarptc/libarptc.h
index b7d3d36..e4f1175 100644
--- a/include/libarptc/libarptc.h
+++ b/include/libarptc/libarptc.h
@@ -21,6 +21,11 @@ typedef char arpt_chainlabel[32];
#define ARPTC_LABEL_QUEUE "QUEUE"
#define ARPTC_LABEL_RETURN "RETURN"
+
+/* NF_ARP_NUMHOOKS is different on 2.4 and 2.6; hack to support both */
+extern int RUNTIME_NF_ARP_NUMHOOKS; /* boy, this is dirty */
+
+
/* Transparent handle type. */
typedef struct arptc_handle *arptc_handle_t;