blob: 2abfcb6c8c5dc9e9934a664e873b31e3599760de [file] [log] [blame]
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00001#include <stdio.h>
2#include <sys/socket.h>
3#include "../include/ebtables_u.h"
4
5
6static void print_help(char **hn)
7{
8 printf("Supported chain for the nat table:\n");
9 printf("%s\n",hn[NF_BR_BROUTING]);
10}
11
12static struct
13ebt_u_table table =
14{
15 "broute",
16 NULL,
17 print_help,
18 NULL
19};
20
21static void _init(void) __attribute__ ((constructor));
22static void _init(void)
23{
24 register_table(&table);
25}