blob: 5259355e2b01b32b6f8e15b2037859dc9d1ff114 [file] [log] [blame]
Bart De Schuymerff587202005-02-08 20:02:28 +00001/* ebtable_broute
2 *
3 * Authors:
4 * Bart De Schuymer <bdschuym@pandora.be>
5 *
6 * April, 2002
7 */
8
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00009#include <stdio.h>
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000010#include "../include/ebtables_u.h"
11
12
Bart De Schuymer8339ff12004-01-14 20:05:27 +000013static void print_help(const char **hn)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000014{
Bart De Schuymer920907b2002-07-24 18:38:40 +000015 printf("Supported chain for the broute table:\n");
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000016 printf("%s\n",hn[NF_BR_BROUTING]);
17}
18
19static struct
20ebt_u_table table =
21{
Bart De Schuymer7cf1cca2003-08-30 16:20:19 +000022 .name = "broute",
23 .help = print_help,
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000024};
25
Bart De Schuymer64182a32004-01-21 20:39:54 +000026void _init(void)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000027{
Bart De Schuymer8339ff12004-01-14 20:05:27 +000028 ebt_register_table(&table);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000029}