Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / ebtables / extensions / ebtable_broute.c
blob5259355e2b01b32b6f8e15b2037859dc9d1ff114
1 /* ebtable_broute
3 * Authors:
4 * Bart De Schuymer <bdschuym@pandora.be>
6 * April, 2002
7 */
9 #include <stdio.h>
10 #include "../include/ebtables_u.h"
13 static void print_help(const char **hn)
15 printf("Supported chain for the broute table:\n");
16 printf("%s\n",hn[NF_BR_BROUTING]);
19 static struct
20 ebt_u_table table =
22 .name = "broute",
23 .help = print_help,
26 void _init(void)
28 ebt_register_table(&table);