blob: 17b1d3c050022d35707985534d0989d680170c8e [file] [log] [blame]
Andreas Eversberg12942562012-07-12 14:31:57 +02001#ifndef _PCU_VTY_H
2#define _PCU_VTY_H
3
4#include <osmocom/vty/command.h>
5#include <osmocom/vty/vty.h>
6
7enum pcu_vty_node {
8 PCU_NODE = _LAST_OSMOVTY_NODE + 1,
9};
10
Andreas Eversberg12942562012-07-12 14:31:57 +020011enum node_type pcu_vty_go_parent(struct vty *vty);
12int pcu_vty_is_config_node(struct vty *vty, int node);
13
14int pcu_vty_init(const struct log_info *cat);
15
16extern struct vty_app_info pcu_vty_info;
17
18#endif /* _PCU_VTY_H */
19