mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-10-31 10:24:42 +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>
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| 
 | |
| #define TCA_BUF_MAX	(64*1024)
 | |
| 
 | |
| extern struct rtnl_handle rth;
 | |
| 
 | |
| extern int do_qdisc(int argc, char **argv);
 | |
| extern int do_class(int argc, char **argv);
 | |
| extern int do_filter(int argc, char **argv);
 | |
| extern int do_action(int argc, char **argv);
 | |
| extern int do_tcmonitor(int argc, char **argv);
 | |
| extern int do_exec(int argc, char **argv);
 | |
| 
 | |
| extern int print_action(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
 | |
| extern int print_filter(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
 | |
| extern int print_qdisc(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
 | |
| extern int print_class(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg);
 | |
| extern void print_size_table(FILE *fp, const char *prefix, struct rtattr *rta);
 | |
| 
 | |
| struct tc_estimator;
 | |
| extern int parse_estimator(int *p_argc, char ***p_argv, struct tc_estimator *est);
 | |
| 
 | |
| struct tc_sizespec;
 | |
| extern int parse_size_table(int *p_argc, char ***p_argv, struct tc_sizespec *s);
 | |
| extern int check_size_table_opts(struct tc_sizespec *s);
 | |
| 
 | |
| extern int show_graph;
 | |
| extern bool use_names;
 |