1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __BRIDGE_H__ 3#define __BRIDGE_H__ 1 4 5#include <linux/if_bridge.h> 6#include <linux/rtnetlink.h> 7 8void bridge_print_vlan_flags(__u16 flags); 9void bridge_print_vlan_stats_only(const struct bridge_vlan_xstats *vstats); 10void bridge_print_vlan_stats(const struct bridge_vlan_xstats *vstats); 11 12void bridge_print_mcast_querier_state(const struct rtattr *vtb); 13 14#endif /* __BRIDGE_H__ */ 15

