aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/vty.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmo-bts/vty.h')
-rw-r--r--include/osmo-bts/vty.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/include/osmo-bts/vty.h b/include/osmo-bts/vty.h
index eab58d6d..d326c5cd 100644
--- a/include/osmo-bts/vty.h
+++ b/include/osmo-bts/vty.h
@@ -12,23 +12,25 @@ enum bts_vty_node {
PHY_INST_NODE,
BTS_NODE,
TRX_NODE,
+ OSMUX_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);
-struct gsm_network *gsmnet_from_vty(struct vty *v);
+int bts_vty_init(void *ctx);
extern struct vty_app_info bts_vty_info;
+extern struct gsm_bts *g_bts;
+
+enum bts_vty_cmd_attr {
+ BTS_VTY_ATTR_NEW_LCHAN,
+ BTS_VTY_TRX_POWERCYCLE,
+ /* NOTE: up to 32 entries */
+};
#endif