summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/mobile/vty.h
blob: 1f1341bc5f92d4e1d9916c358a14bb9eb8746831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef OSMOCOM_VTY_H
#define OSMOCOM_VTY_H

#include <osmocom/bb/common/osmocom_data.h>
#include <osmocom/vty/vty.h>
#include <osmocom/vty/buffer.h>
#include <osmocom/vty/command.h>

enum ms_vty_node {
	MS_NODE = _LAST_OSMOVTY_NODE + 1,
	TESTSIM_NODE,
	SUPPORT_NODE,
};

enum node_type ms_vty_go_parent(struct vty *vty);
int ms_vty_init(void);
extern void vty_notify(struct osmocom_ms *ms, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));

#endif