blob: 78c10abd7b6e3b8d60d05e4cfa5f7fc94713ff60 [file] [log] [blame]
net[shemminger]!shemminger1ffd7fd2005-01-17 23:26:23 +00001#ifndef _IPTABLES_USER_H
2#define _IPTABLES_USER_H
3
Stephen Hemminger5cd1adb2016-01-03 15:14:27 -08004#include <netinet/ip.h>
5#include <xtables.h>
6#include <libiptc/libiptc.h>
7#include <iptables/internal.h>
net[shemminger]!shemminger1ffd7fd2005-01-17 23:26:23 +00008
9/* Your shared library should call one of these. */
Stephen Hemminger5cd1adb2016-01-03 15:14:27 -080010extern int do_command4(int argc, char *argv[], char **table,
11 struct xtc_handle **handle, bool restore);
12extern int delete_chain4(const xt_chainlabel chain, int verbose,
13 struct xtc_handle *handle);
14extern int flush_entries4(const xt_chainlabel chain, int verbose,
15 struct xtc_handle *handle);
16extern int for_each_chain4(int (*fn)(const xt_chainlabel, int, struct xtc_handle *),
17 int verbose, int builtinstoo, struct xtc_handle *handle);
18extern void print_rule4(const struct ipt_entry *e,
19 struct xtc_handle *handle, const char *chain, int counters);
net[shemminger]!shemminger1ffd7fd2005-01-17 23:26:23 +000020
Stephen Hemminger5cd1adb2016-01-03 15:14:27 -080021extern struct xtables_globals iptables_globals;
net[shemminger]!shemminger1ffd7fd2005-01-17 23:26:23 +000022
Stephen Hemminger5cd1adb2016-01-03 15:14:27 -080023extern struct xtables_globals xtables_globals;
net[shemminger]!shemminger1ffd7fd2005-01-17 23:26:23 +000024
net[shemminger]!shemminger1ffd7fd2005-01-17 23:26:23 +000025#endif /*_IPTABLES_USER_H*/