File: bridge.h

package info (click to toggle)
iproute2 6.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,272 kB
  • sloc: ansic: 125,480; sh: 1,363; cpp: 946; makefile: 697; yacc: 421; lex: 145; python: 43
file content (14 lines) | stat: -rw-r--r-- 426 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __BRIDGE_H__
#define __BRIDGE_H__ 1

#include <linux/if_bridge.h>
#include <linux/rtnetlink.h>

void bridge_print_vlan_flags(__u16 flags);
void bridge_print_vlan_stats_only(const struct bridge_vlan_xstats *vstats);
void bridge_print_vlan_stats(const struct bridge_vlan_xstats *vstats);

void bridge_print_mcast_querier_state(const struct rtattr *vtb);

#endif /* __BRIDGE_H__ */