blob: 35acf64c250b6d5fe48c1a452d9a1fb6ea0c3e13 [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
30int pcu_vty_config_write_pcu_ext(struct vty *vty);
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010031int pcu_vty_show_tbf_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data);
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +020032int pcu_vty_show_ms_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data);
Jacob Erlbeck37e896d2015-06-05 16:33:33 +020033int pcu_vty_show_ms_by_tlli(struct vty *vty, struct gprs_rlcmac_bts *bts_data,
34 uint32_t tlli);
35int pcu_vty_show_ms_by_imsi(struct vty *vty, struct gprs_rlcmac_bts *bts_data,
36 const char *imsi);
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020037
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020038#ifdef __cplusplus
39}
40#endif