Initial import of OsmocomBB into git repository
[osmocom-bb.git] / src / host / layer2 / include / osmocom / osmocom_data.h
1 #ifndef osmocom_data_h
2 #define osmocom_data_h
3
4 #include <osmocom/select.h>
5
6 /* taken from OpenBSC */
7 enum gsm_band {
8         GSM_BAND_400,
9         GSM_BAND_850,
10         GSM_BAND_900,
11         GSM_BAND_1800,
12         GSM_BAND_1900,
13 };
14
15 /* One Mobilestation for osmocom */
16 struct osmocom_ms {
17         struct bsc_fd bfd;
18         enum gsm_band band;
19         int arfcn;
20 };
21
22 #endif