diff options
Diffstat (limited to 'usr.bin/bgplg/bgplg.h')
-rw-r--r-- | usr.bin/bgplg/bgplg.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/bgplg/bgplg.h b/usr.bin/bgplg/bgplg.h index 753ddb3ba50..4b3d3802818 100644 --- a/usr.bin/bgplg/bgplg.h +++ b/usr.bin/bgplg/bgplg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgplg.h,v 1.5 2009/05/20 09:45:59 sthen Exp $ */ +/* $OpenBSD: bgplg.h,v 1.6 2010/04/02 21:20:49 sthen Exp $ */ /* * Copyright (c) 2005, 2006 Reyk Floeter <reyk@vantronix.net> @@ -64,6 +64,10 @@ struct cmd { { TRACEROUTE, "-Sl", NULL } }, \ { "ping", 1, 1, "<address>", \ { PING, "-c4", "-w2", NULL } }, \ + { "traceroute6", 1, 1, "<address>", \ + { TRACEROUTE6, "-l", NULL } }, \ + { "ping6", 1, 1, "<address>", \ + { PING6, "-c4", "-i2", NULL } }, \ { "help", 0, 0, NULL, { NULL }, lg_help }, \ { NULL } \ } |