Add ip command aliases and better matching

This commit is contained in:
shemminger 2005-11-22 17:30:43 +00:00
parent 991d2c0d56
commit ede723964a
2 changed files with 29 additions and 8 deletions

View File

@ -1,3 +1,11 @@
2005-11-22 Stephen Hemminger <shemminger@osdl.org
* Handle ambigious ip command matches
2005-11-22 Patrick McHardy <kaber@trash.net>
* Add back ip command aliases
2005-11-07 Masahide NAKAMURA <nakam@linux-ipv6.org>
* Updating for 2.6.14

29
ip/ip.c
View File

@ -62,13 +62,15 @@ static const struct cmd {
const char *cmd;
int (*func)(int argc, char **argv);
} cmds[] = {
{ "addr", do_ipaddr },
{ "maddr", do_multiaddr },
{ "address", do_ipaddr },
{ "maddress", do_multiaddr },
{ "route", do_iproute },
{ "rule", do_iprule },
{ "neigh", do_ipneigh },
{ "neighbor", do_ipneigh },
{ "neighbour", do_ipneigh },
{ "link", do_iplink },
{ "tunnel", do_iptunnel },
{ "tunl", do_iptunnel },
{ "monitor", do_ipmonitor },
{ "xfrm", do_xfrm },
{ "mroute", do_multiroute },
@ -78,14 +80,25 @@ static const struct cmd {
static int do_cmd(const char *argv0, int argc, char **argv)
{
const struct cmd *c;
const struct cmd *c, *m = NULL;
for (c = cmds; c->cmd; ++c)
if (matches(argv0, c->cmd) == 0)
return c->func(argc-1, argv+1);
for (c = cmds; c->cmd; ++c) {
if (matches(argv0, c->cmd) == 0) {
if (m && m->func != c->func) {
fprintf(stderr,
"Ambiguious command \"%s\" matches both %s and %s\n",
argv0, m->cmd, c->cmd);
return -1;
}
m = c;
}
}
if (m)
return m->func(argc-1, argv+1);
fprintf(stderr, "Object \"%s\" is unknown, try \"ip help\".\n", argv0);
exit(-1);
return -1;
}
static int batch(const char *name)