summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/osmocom_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/layer23/include/osmocom/osmocom_data.h')
-rw-r--r--src/host/layer23/include/osmocom/osmocom_data.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/host/layer23/include/osmocom/osmocom_data.h b/src/host/layer23/include/osmocom/osmocom_data.h
new file mode 100644
index 0000000..48c5579
--- /dev/null
+++ b/src/host/layer23/include/osmocom/osmocom_data.h
@@ -0,0 +1,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