summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/osmocom_data.h
diff options
context:
space:
mode:
authorHarald Welte2010-03-03 14:24:05 +0100
committerHarald Welte2010-03-03 14:25:21 +0100
commitd4e118a7a059a9d675d0d8a8ea75fdc88f43afb7 (patch)
treeb685489a7e6f68f829e30b58602ce622cd5adc0e /src/host/layer23/include/osmocom/osmocom_data.h
parentlayer2: Rename layer2.[ch] to l1ctl.[ch] as they only remote-control L1 (diff)
downloadosmocom-d4e118a7a059a9d675d0d8a8ea75fdc88f43afb7.tar.gz
osmocom-d4e118a7a059a9d675d0d8a8ea75fdc88f43afb7.tar.xz
osmocom-d4e118a7a059a9d675d0d8a8ea75fdc88f43afb7.zip
Rename 'layer2' program to 'layer23' program
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