mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-11-04 07:58:53 +00:00 
			
		
		
		
	In this patch we introduce the ability to get UDP specific bearer options such as remoteip, remoteport, localip and localport. After some discussions on tipc-discussion on how to handle media specific options we agreed to pass them after the media. For media generic bearer options we already do: $ tipc bearer get OPTION media MEDIA name|device NAME|DEVICE For the UDP media specific bearer options we introduce in this path: $ tipc bearer get media udp name NAME OPTION such as $ tipc bearer get media udp name NAME remoteip This allows bash-completion to tab complete only appropriate options, it makes more logical sense and it scales better. Even though it might look a little different to the user. In order to use the existing option parsing framework to do this we add a flag (OPT_KEY) to the option parsing function. If the UDP bearer has multiple remoteip addresses associated with it (replicast) we handle the TIPC_NLA_UDP_MULTI_REMOTEIP flag and send a TIPC_NL_UDP_GET_REMOTEIP query transparently to the user. Signed-off-by: Richard Alpe <richard.alpe@ericsson.com> Reviewed-by: Parthasarathy Bhuvaragan <parthasarathy.bhuvaragan@ericsson.com> Acked-by: Jon Maloy <jon.maloy@ericsson.com>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * cmdl.h	Framework for handling command line options.
 | 
						|
 *
 | 
						|
 *		This program is free software; you can redistribute it and/or
 | 
						|
 *		modify it under the terms of the GNU General Public License
 | 
						|
 *		as published by the Free Software Foundation; either version
 | 
						|
 *		2 of the License, or (at your option) any later version.
 | 
						|
 *
 | 
						|
 * Authors:	Richard Alpe <richard.alpe@ericsson.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _TIPC_CMDL_H
 | 
						|
#define _TIPC_CMDL_H
 | 
						|
 | 
						|
#include <libmnl/libmnl.h>
 | 
						|
 | 
						|
extern int help_flag;
 | 
						|
 | 
						|
enum {
 | 
						|
	OPT_KEY			= (1 << 0),
 | 
						|
	OPT_KEYVAL		= (1 << 1),
 | 
						|
};
 | 
						|
 | 
						|
struct cmdl {
 | 
						|
	int optind;
 | 
						|
	int argc;
 | 
						|
	char **argv;
 | 
						|
};
 | 
						|
 | 
						|
struct tipc_sup_media {
 | 
						|
	char *media;
 | 
						|
	char *identifier;
 | 
						|
	void (*help)(struct cmdl *cmdl, char *media);
 | 
						|
};
 | 
						|
 | 
						|
struct cmd {
 | 
						|
	const char *cmd;
 | 
						|
	int (*func)(struct nlmsghdr *nlh, const struct cmd *cmd,
 | 
						|
		    struct cmdl *cmdl, void *data);
 | 
						|
	void (*help)(struct cmdl *cmdl);
 | 
						|
};
 | 
						|
 | 
						|
struct opt {
 | 
						|
	const char *key;
 | 
						|
	uint16_t flag;
 | 
						|
	char *val;
 | 
						|
};
 | 
						|
 | 
						|
struct opt *get_opt(struct opt *opts, char *key);
 | 
						|
bool has_opt(struct opt *opts, char *key);
 | 
						|
int parse_opts(struct opt *opts, struct cmdl *cmdl);
 | 
						|
char *shift_cmdl(struct cmdl *cmdl);
 | 
						|
 | 
						|
int run_cmd(struct nlmsghdr *nlh, const struct cmd *caller,
 | 
						|
	    const struct cmd *cmds, struct cmdl *cmdl, void *data);
 | 
						|
 | 
						|
const struct cmd *find_cmd(const struct cmd *cmds, char *str);
 | 
						|
 | 
						|
#endif
 |