blob: c00b8824f30c4978d4be8db15432498eda67ba62 [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
Jacob Erlbeckf76fede2015-08-17 13:42:46 +020011int pcu_vty_go_parent(struct vty *vty);
Andreas Eversberg12942562012-07-12 14:31:57 +020012int 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