android_mt6572_jiabo/external/ebtables/extensions/ebtable_broute.c
2025-09-05 16:56:03 +08:00

29 lines
428 B
C

/* ebtable_broute
*
* Authors:
* Bart De Schuymer <bdschuym@pandora.be>
*
* April, 2002
*/
#include <stdio.h>
#include "../include/ebtables_u.h"
static void print_help(const char **hn)
{
printf("Supported chain for the broute table:\n");
printf("%s\n",hn[NF_BR_BROUTING]);
}
static struct
ebt_u_table table =
{
.name = "broute",
.help = print_help,
};
void _t_broute_init(void)
{
ebt_register_table(&table);
}