aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_vty_functions.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-05 16:33:33 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-08 09:41:24 +0200
commit37e896dff112fda77c29de770a0d8b3fe8800a5a (patch)
tree2bc348d9a5c2ac9dd228d56e71b87961f5eb1f9f /src/pcu_vty_functions.h
parentb33e675e5a9f80be81ffef87ba3a9ed05d6945c5 (diff)
vty: Add command to show detailed MS info
This commit extends the "show ms" command to display an extended set of information for a single MS. The following VTY commands are added: - show ms tlli TLLI - show ms imsi IMSI Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/pcu_vty_functions.h')
-rw-r--r--src/pcu_vty_functions.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pcu_vty_functions.h b/src/pcu_vty_functions.h
index 89c5f82..1f4ad91 100644
--- a/src/pcu_vty_functions.h
+++ b/src/pcu_vty_functions.h
@@ -29,6 +29,10 @@ struct gprs_rlcmac_bts;
int pcu_vty_config_write_pcu_ext(struct vty *vty);
int pcu_vty_show_ms_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data);
+int pcu_vty_show_ms_by_tlli(struct vty *vty, struct gprs_rlcmac_bts *bts_data,
+ uint32_t tlli);
+int pcu_vty_show_ms_by_imsi(struct vty *vty, struct gprs_rlcmac_bts *bts_data,
+ const char *imsi);
#ifdef __cplusplus
}