Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Author: Paul.Russell@rustcorp.com.au and mneuling@radlogic.com.au |
| 3 | * |
Harald Welte | 10a907f | 2002-08-07 09:07:41 +0000 | [diff] [blame] | 4 | * (C) 2000-2002 by the netfilter coreteam <coreteam@netfilter.org>: |
| 5 | * Paul 'Rusty' Russell <rusty@rustcorp.com.au> |
| 6 | * Marc Boucher <marc+nf@mbsi.ca> |
| 7 | * James Morris <jmorris@intercode.com.au> |
| 8 | * Harald Welte <laforge@gnumonks.org> |
| 9 | * Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
| 10 | * |
Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 11 | * Based on the ipchains code by Paul Russell and Michael Neuling |
| 12 | * |
| 13 | * iptables -- IP firewall administration for kernels with |
| 14 | * firewall table (aimed for the 2.3 kernels) |
| 15 | * |
| 16 | * See the accompanying manual page iptables(8) for information |
| 17 | * about proper usage of this program. |
| 18 | * |
| 19 | * This program is free software; you can redistribute it and/or modify |
| 20 | * it under the terms of the GNU General Public License as published by |
| 21 | * the Free Software Foundation; either version 2 of the License, or |
| 22 | * (at your option) any later version. |
| 23 | * |
| 24 | * This program is distributed in the hope that it will be useful, |
| 25 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 27 | * GNU General Public License for more details. |
| 28 | * |
| 29 | * You should have received a copy of the GNU General Public License |
| 30 | * along with this program; if not, write to the Free Software |
| 31 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 32 | */ |
| 33 | |
| 34 | #include <stdio.h> |
Harald Welte | d8e6563 | 2001-01-05 15:20:07 +0000 | [diff] [blame] | 35 | #include <stdlib.h> |
Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 36 | #include <errno.h> |
| 37 | #include <ip6tables.h> |
| 38 | |
| 39 | int |
| 40 | main(int argc, char *argv[]) |
| 41 | { |
| 42 | int ret; |
| 43 | char *table = "filter"; |
Fabrice MARIE | 8a5eb6d | 2001-05-05 21:37:47 +0000 | [diff] [blame] | 44 | ip6tc_handle_t handle = NULL; |
Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 45 | |
| 46 | program_name = "ip6tables"; |
Harald Welte | 80fe35d | 2002-05-29 13:08:15 +0000 | [diff] [blame] | 47 | program_version = IPTABLES_VERSION; |
Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 48 | |
Martin Josefsson | 357d59d | 2004-12-27 19:49:28 +0000 | [diff] [blame] | 49 | lib_dir = getenv("IP6TABLES_LIB_DIR"); |
| 50 | if (!lib_dir) |
| 51 | lib_dir = IP6T_LIB_DIR; |
| 52 | |
Harald Welte | 3efb6ea | 2001-08-06 18:50:21 +0000 | [diff] [blame] | 53 | #ifdef NO_SHARED_LIBS |
| 54 | init_extensions(); |
| 55 | #endif |
| 56 | |
Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 57 | ret = do_command6(argc, argv, &table, &handle); |
| 58 | if (ret) |
| 59 | ret = ip6tc_commit(&handle); |
| 60 | |
| 61 | if (!ret) |
Philip Blundell | 57e07af | 2000-06-04 17:25:33 +0000 | [diff] [blame] | 62 | fprintf(stderr, "ip6tables: %s\n", |
Rusty Russell | 5eed48a | 2000-06-02 20:12:24 +0000 | [diff] [blame] | 63 | ip6tc_strerror(errno)); |
| 64 | |
| 65 | exit(!ret); |
| 66 | } |