src: use namespace prefix osmo_timer*
[osmocom-bb.git] / src / host / layer23 / include / osmocom / bb / mobile / vty.h
1 #ifndef OSMOCOM_VTY_H
2 #define OSMOCOM_VTY_H
3
4 #include <osmocom/bb/common/osmocom_data.h>
5 #include <osmocom/vty/vty.h>
6 #include <osmocom/vty/buffer.h>
7 #include <osmocom/vty/command.h>
8
9 enum ms_vty_node {
10         MS_NODE = _LAST_OSMOVTY_NODE + 1,
11         TESTSIM_NODE,
12         SUPPORT_NODE,
13 };
14
15 enum node_type ms_vty_go_parent(struct vty *vty);
16 int ms_vty_init(void);
17 extern void vty_notify(struct osmocom_ms *ms, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
18
19 #endif
20