blob: f6b362c2aab71f1f79d24adf8335cce03a2f9d7d [file] [log] [blame]
Rusty Russell5eed48a2000-06-02 20:12:24 +00001/*
2 * Author: Paul.Russell@rustcorp.com.au and mneuling@radlogic.com.au
3 *
4 * Based on the ipchains code by Paul Russell and Michael Neuling
5 *
6 * iptables -- IP firewall administration for kernels with
7 * firewall table (aimed for the 2.3 kernels)
8 *
9 * See the accompanying manual page iptables(8) for information
10 * about proper usage of this program.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
26
27#include <stdio.h>
Harald Welted8e65632001-01-05 15:20:07 +000028#include <stdlib.h>
Rusty Russell5eed48a2000-06-02 20:12:24 +000029#include <errno.h>
30#include <ip6tables.h>
31
32int
33main(int argc, char *argv[])
34{
35 int ret;
36 char *table = "filter";
37 ip6tc_handle_t handle;
38
39 program_name = "ip6tables";
40 program_version = NETFILTER_VERSION;
41
42 ret = do_command6(argc, argv, &table, &handle);
43 if (ret)
44 ret = ip6tc_commit(&handle);
45
46 if (!ret)
Philip Blundell57e07af2000-06-04 17:25:33 +000047 fprintf(stderr, "ip6tables: %s\n",
Rusty Russell5eed48a2000-06-02 20:12:24 +000048 ip6tc_strerror(errno));
49
50 exit(!ret);
51}