blob: ea7aa8987fd6c5127073d780206ef2604ac01214 [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
Steve Kondik8b1e4932016-09-23 10:09:51 -070026void _t_broute_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}