int parse_stp_state(const char *arg);
int print_vlan_rtm(struct nlmsghdr *n, void *arg, bool monitor,
bool global_only);
-int print_vnifilter_rtm(struct nlmsghdr *n, void *arg, bool monitor);
+int print_vnifilter_rtm(struct nlmsghdr *n, void *arg);
void br_print_router_port_stats(struct rtattr *pattr);
void print_headers(FILE *fp, const char *label);
case RTM_NEWTUNNEL:
case RTM_DELTUNNEL:
- return print_vnifilter_rtm(n, arg, true);
+ return print_vnifilter_rtm(n, arg);
default:
return 0;
print_string(PRINT_FP, NULL, "%s", _SL_);
}
-int print_vnifilter_rtm(struct nlmsghdr *n, void *arg, bool monitor)
+int print_vnifilter_rtm(struct nlmsghdr *n, void *arg)
{
struct tunnel_msg *tmsg = NLMSG_DATA(n);
int len = n->nlmsg_len;
static int print_vnifilter_rtm_filter(struct nlmsghdr *n, void *arg)
{
- return print_vnifilter_rtm(n, arg, false);
+ return print_vnifilter_rtm(n, arg);
}
static int vni_show(int argc, char **argv)