blob: 390d75cdaf92b6a0c3ea438d07e4d1a28aaf3cf6 [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
11extern struct cmd_element ournode_exit_cmd;
12extern struct cmd_element ournode_end_cmd;
13
14enum node_type pcu_vty_go_parent(struct vty *vty);
15int pcu_vty_is_config_node(struct vty *vty, int node);
16
17int pcu_vty_init(const struct log_info *cat);
18
19extern struct vty_app_info pcu_vty_info;
20
21#endif /* _PCU_VTY_H */
22