mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-10-31 19:18:00 +00:00 
			
		
		
		
	 6054c1ebf7
			
		
	
	
		6054c1ebf7
		
	
	
	
	
		
			
			For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
		
			
				
	
	
		
			31 lines
		
	
	
		
			981 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			981 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| 
 | |
| #define MDB_RTA(r) \
 | |
| 		((struct rtattr *)(((char *)(r)) + RTA_ALIGN(sizeof(struct br_mdb_entry))))
 | |
| 
 | |
| #define MDB_RTR_RTA(r) \
 | |
| 		((struct rtattr *)(((char *)(r)) + RTA_ALIGN(sizeof(__u32))))
 | |
| 
 | |
| extern void print_vlan_info(FILE *fp, struct rtattr *tb, int ifindex);
 | |
| extern int print_linkinfo(const struct sockaddr_nl *who,
 | |
| 			  struct nlmsghdr *n,
 | |
| 			  void *arg);
 | |
| extern int print_fdb(const struct sockaddr_nl *who,
 | |
| 		     struct nlmsghdr *n, void *arg);
 | |
| extern int print_mdb(const struct sockaddr_nl *who,
 | |
| 		     struct nlmsghdr *n, void *arg);
 | |
| 
 | |
| extern int do_fdb(int argc, char **argv);
 | |
| extern int do_mdb(int argc, char **argv);
 | |
| extern int do_monitor(int argc, char **argv);
 | |
| extern int do_vlan(int argc, char **argv);
 | |
| extern int do_link(int argc, char **argv);
 | |
| 
 | |
| extern int preferred_family;
 | |
| extern int show_stats;
 | |
| extern int show_details;
 | |
| extern int timestamp;
 | |
| extern int compress_vlans;
 | |
| extern int json_output;
 | |
| extern struct rtnl_handle rth;
 |