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

#include <osmocom/select.h>

/* taken from OpenBSC */
enum gsm_band {
	GSM_BAND_400,
	GSM_BAND_850,
	GSM_BAND_900,
	GSM_BAND_1800,
	GSM_BAND_1900,
};

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

#endif