summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/osmocom_data.h
blob: 48c557986a13fecc51d570141d37758f458ec919 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef osmocom_data_h
#define osmocom_data_h

#include <osmocore/select.h>
#include <osmocore/gsm_utils.h>

#include <osmocom/lapdm.h>

/* One Mobilestation for osmocom */
struct osmocom_ms {
	struct bsc_fd bfd;
	enum gsm_band band;
	int arfcn;

	struct lapdm_entity lapdm_dcch;
	struct lapdm_entity lapdm_acch;
};

#endif