aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2016-04-07 11:01:52 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-04-07 12:38:12 +0200
commitb9bb0b02acdcd2b56e2821e454d73affa044e199 (patch)
tree9eb125979db81901ce3f04540dd328a10c8d42ed /src
parentea50732df21442c8d33806d30040d6d81f7aab90 (diff)
Add missing docs for bssgp bvc reset vty command
Fixes the build failure with extended tests enabled.
Diffstat (limited to 'src')
-rw-r--r--src/gb/gprs_bssgp_vty.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/gb/gprs_bssgp_vty.c b/src/gb/gprs_bssgp_vty.c
index a3af69b7..f23d75f0 100644
--- a/src/gb/gprs_bssgp_vty.c
+++ b/src/gb/gprs_bssgp_vty.c
@@ -115,8 +115,14 @@ static void dump_bssgp(struct vty *vty, int stats)
}
DEFUN(bvc_reset, bvc_reset_cmd,
- "bssgp bvc nsei <0-65535> bvci <0-65535> reset",
- "Initiate BVC RESET procedure for a given NSEI and BVCI\n")
+ "bssgp bvc nsei <0-65535> bvci <0-65535> reset",
+ "Initiate BVC RESET procedure for a given NSEI and BVCI\n"
+ "Filter based on BSSGP Virtual Connection\n"
+ "NSEI of the BVC to be filtered\n"
+ "Network Service Entity Identifier (NSEI)\n"
+ "BVCI of the BVC to be filtered\n"
+ "BSSGP Virtual Connection Identifier (BVCI)\n"
+ "Perform reset procedure\n")
{
int r;
uint16_t nsei = atoi(argv[0]), bvci = atoi(argv[1]);