blob: a0753501281a199dd29677a6180fb1799cd57a09 [file] [log] [blame]
Andreas Eversberg12942562012-07-12 14:31:57 +02001#ifndef _PCU_VTY_H
2#define _PCU_VTY_H
3
Max84bf0fa2017-09-01 11:02:40 +02004#include <osmocom/gsm/protocol/gsm_04_08.h>
Andreas Eversberg12942562012-07-12 14:31:57 +02005#include <osmocom/vty/command.h>
6#include <osmocom/vty/vty.h>
7
8enum pcu_vty_node {
9 PCU_NODE = _LAST_OSMOVTY_NODE + 1,
10};
11
Jacob Erlbeckf76fede2015-08-17 13:42:46 +020012int pcu_vty_go_parent(struct vty *vty);
Andreas Eversberg12942562012-07-12 14:31:57 +020013int pcu_vty_is_config_node(struct vty *vty, int node);
14
15int pcu_vty_init(const struct log_info *cat);
16
17extern struct vty_app_info pcu_vty_info;
18
19#endif /* _PCU_VTY_H */
20