blob: 8549e5b5fae08184edadf5b9be2f0e6e18e9f6e3 [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{
14 "broute",
15 NULL,
16 print_help,
17 NULL
18};
19
20static void _init(void) __attribute__ ((constructor));
21static void _init(void)
22{
23 register_table(&table);
24}