blob: 172dffcca1e614f0055b44bc127a40a8ca3f1856 [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.
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020015 */
16
17#pragma once
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23struct vty;
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +020024struct gprs_rlcmac_bts;
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020025
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +010026int pcu_vty_show_tbf_all(struct vty *vty, struct gprs_rlcmac_bts *bts, uint32_t flags);
27int pcu_vty_show_ms_all(struct vty *vty, struct gprs_rlcmac_bts *bts);
28int pcu_vty_show_ms_by_tlli(struct vty *vty, struct gprs_rlcmac_bts *bts,
Jacob Erlbeck37e896d2015-06-05 16:33:33 +020029 uint32_t tlli);
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +010030int pcu_vty_show_ms_by_imsi(struct vty *vty, struct gprs_rlcmac_bts *bts,
Jacob Erlbeck37e896d2015-06-05 16:33:33 +020031 const char *imsi);
Pau Espin Pedrol0ece97d2021-01-18 12:53:54 +010032int pcu_vty_show_bts_pdch(struct vty *vty, const struct gprs_rlcmac_bts *bts);
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020033#ifdef __cplusplus
34}
35#endif