blob: 155d9ceaf510e740c2da290b724946baacd9ef7b [file] [log] [blame]
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00001#include <stdio.h>
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00002#include "../include/ebtables_u.h"
3
4
5static void print_help(char **hn)
6{
Bart De Schuymer920907b2002-07-24 18:38:40 +00007 printf("Supported chain for the broute table:\n");
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00008 printf("%s\n",hn[NF_BR_BROUTING]);
9}
10
11static struct
12ebt_u_table table =
13{
Bart De Schuymer7cf1cca2003-08-30 16:20:19 +000014 .name = "broute",
15 .help = print_help,
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000016};
17
18static void _init(void) __attribute__ ((constructor));
19static void _init(void)
20{
21 register_table(&table);
22}