aboutsummaryrefslogtreecommitdiffstats
path: root/tools/remus/imqebt/ebtables-standalone.c
blob: eecc210d44089bfb163dbed6b963c96390c3ad25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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_silent = 0;
       ebt_early_init_once();
       strcpy(replace.name, "filter");
       do_command(argc, argv, EXEC_STYLE_PRG, &replace);
       return 0;
}