#ifndef OSMOBTS_VTY_H #define OSMOBTS_VTY_H #include #include enum bts_vty_node { /* PHY_NODE must come before BTS node to ensure the phy * instances are created at the time the TRX nodes want to refer * to them */ PHY_NODE = _LAST_OSMOVTY_NODE + 1, PHY_INST_NODE, BTS_NODE, TRX_NODE, }; extern struct cmd_element ournode_exit_cmd; extern struct cmd_element ournode_end_cmd; extern struct cmd_element cfg_bts_auto_band_cmd; extern struct cmd_element cfg_bts_no_auto_band_cmd; struct phy_instance *vty_get_phy_instance(struct vty *vty, int phy_nr, int inst_nr); int bts_vty_go_parent(struct vty *vty); int bts_vty_is_config_node(struct vty *vty, int node); int bts_vty_init(struct gsm_bts *bts, const struct log_info *cat); extern struct vty_app_info bts_vty_info; #endif