osmo-pcu/src/pcu_vty.h

23 lines
471 B
C

#ifndef _PCU_VTY_H
#define _PCU_VTY_H
#include <osmocom/vty/command.h>
#include <osmocom/vty/vty.h>
enum pcu_vty_node {
PCU_NODE = _LAST_OSMOVTY_NODE + 1,
};
extern struct cmd_element ournode_exit_cmd;
extern struct cmd_element ournode_end_cmd;
enum node_type pcu_vty_go_parent(struct vty *vty);
int pcu_vty_is_config_node(struct vty *vty, int node);
int pcu_vty_init(const struct log_info *cat);
extern struct vty_app_info pcu_vty_info;
#endif /* _PCU_VTY_H */