blob: a68df27c1b1e874b2bd7bac5de2a21f096060659 [file] [log] [blame]
Jacob Erlbeck62e96a32015-06-04 09:42:14 +02001/* pcu_vty_functions.h
2 *
3 * Copyright (C) 2015 by Sysmocom s.f.m.c. GmbH
4 * Author: Jacob Erlbeck <jerlbeck@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#pragma once
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27struct vty;
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +020028struct gprs_rlcmac_bts;
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020029
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +010030int pcu_vty_show_tbf_all(struct vty *vty, struct gprs_rlcmac_bts *bts, uint32_t flags);
31int pcu_vty_show_ms_all(struct vty *vty, struct gprs_rlcmac_bts *bts);
32int pcu_vty_show_ms_by_tlli(struct vty *vty, struct gprs_rlcmac_bts *bts,
Jacob Erlbeck37e896d2015-06-05 16:33:33 +020033 uint32_t tlli);
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +010034int pcu_vty_show_ms_by_imsi(struct vty *vty, struct gprs_rlcmac_bts *bts,
Jacob Erlbeck37e896d2015-06-05 16:33:33 +020035 const char *imsi);
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +010036int pcu_vty_show_bts_pdch(struct vty *vty, const struct gprs_rlcmac_bts *bts);
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020037#ifdef __cplusplus
38}
39#endif