From 653bee7d02a1a1c827b54d235b644fec6a6f4683 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 28 Jun 2018 13:18:41 +0200 Subject: filter: vty: Print policy list in cmd show access-list Change-Id: I3761819fb29f6fe49995ce4c1ae0e9bf92f993cd --- src/libfilter/bsc_msg_vty.c | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) (limited to 'src/libfilter') diff --git a/src/libfilter/bsc_msg_vty.c b/src/libfilter/bsc_msg_vty.c index 9905365cf..b26f4f1a6 100644 --- a/src/libfilter/bsc_msg_vty.c +++ b/src/libfilter/bsc_msg_vty.c @@ -26,6 +26,22 @@ static struct llist_head *_acc_lst; static void *_ctx; +static void bsc_msg_acc_lst_write_one(struct vty *vty, struct bsc_msg_acc_lst *lst) +{ + struct bsc_msg_acc_lst_entry *entry; + + llist_for_each_entry(entry, &lst->fltr_list, list) { + if (entry->imsi_allow) + vty_out(vty, " access-list %s imsi-allow %s%s", + lst->name, entry->imsi_allow, VTY_NEWLINE); + if (entry->imsi_deny) + vty_out(vty, " access-list %s imsi-deny %s %d %d%s", + lst->name, entry->imsi_deny, + entry->cm_reject_cause, entry->lu_reject_cause, + VTY_NEWLINE); + } +} + DEFUN(cfg_lst_no, cfg_lst_no_cmd, "no access-list NAME", @@ -52,6 +68,7 @@ DEFUN(show_acc_lst, return CMD_WARNING; vty_out(vty, "access-list %s%s", acc->name, VTY_NEWLINE); + bsc_msg_acc_lst_write_one(vty, acc); vty_out_rate_ctr_group(vty, " ", acc->stats); return CMD_SUCCESS; @@ -111,22 +128,6 @@ DEFUN(cfg_lst_imsi_deny, return CMD_SUCCESS; } -static void bsc_msg_acc_lst_write_one(struct vty *vty, struct bsc_msg_acc_lst *lst) -{ - struct bsc_msg_acc_lst_entry *entry; - - llist_for_each_entry(entry, &lst->fltr_list, list) { - if (entry->imsi_allow) - vty_out(vty, " access-list %s imsi-allow %s%s", - lst->name, entry->imsi_allow, VTY_NEWLINE); - if (entry->imsi_deny) - vty_out(vty, " access-list %s imsi-deny %s %d %d%s", - lst->name, entry->imsi_deny, - entry->cm_reject_cause, entry->lu_reject_cause, - VTY_NEWLINE); - } -} - void bsc_msg_acc_lst_write(struct vty *vty) { struct bsc_msg_acc_lst *lst; -- cgit v1.2.3