summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJamal Hadi Salim <hadi@cyberus.ca>2009-02-11 16:28:31 -0500
committerJan Engelhardt <jengelh@medozas.de>2009-02-12 18:54:37 +0100
commit617d3d140f4739558dce2ef8ed01aef251cf5487 (patch)
tree66fe7689d4918ba19c1c560c5ff069c702fa026e /include
parente37c2d0b2cca00f4dfa77b52df065aad304da59b (diff)
libxtables: set names of programs
Set proper name of application. Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Diffstat (limited to 'include')
-rw-r--r--include/ip6tables.h2
-rw-r--r--include/iptables.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/ip6tables.h b/include/ip6tables.h
index 86587e6f..ca0f9a05 100644
--- a/include/ip6tables.h
+++ b/include/ip6tables.h
@@ -15,4 +15,6 @@ extern int flush_entries(const ip6t_chainlabel chain, int verbose, struct ip6tc_
extern int delete_chain(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
void print_rule(const struct ip6t_entry *e, struct ip6tc_handle *h, const char *chain, int counters);
+extern struct xtables_globals ip6tables_globals;
+
#endif /*_IP6TABLES_USER_H*/
diff --git a/include/iptables.h b/include/iptables.h
index f0aa3455..84211c32 100644
--- a/include/iptables.h
+++ b/include/iptables.h
@@ -26,4 +26,6 @@ extern void get_kernel_version(void);
#define LINUX_VERSION_MINOR(x) (((x)>> 8) & 0xFF)
#define LINUX_VERSION_PATCH(x) ( (x) & 0xFF)
+extern struct xtables_globals iptables_globals;
+
#endif /*_IPTABLES_USER_H*/