1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-14 11:13:55 +02:00
gluon-packages/net/ebtables-tiny/src/ebtables-standalone.c
2018-04-09 14:55:25 +02:00

14 lines
259 B
C

#include <string.h>
#include "include/ebtables_u.h"
static struct ebt_u_replace replace;
void ebt_early_init_once();
int main(int argc, char *argv[])
{
ebt_early_init_once();
strcpy(replace.name, "filter");
do_command(argc, argv, &replace);
return 0;
}