summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/modem
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-01-25 20:41:54 +0100
committerpespin <pespin@sysmocom.de>2023-01-30 19:57:36 +0000
commit60716bcfe6dac4a77ff367a59b314b1bd4e56ad0 (patch)
tree79c4b3095a0e968ff1c9d041ec781ef7a55d067d /src/host/layer23/include/osmocom/bb/modem
parent53996bb3d84352550f8c56ee9fe4ef396644f518 (diff)
modem: Initial integration of libosmo-gprs-rlcmac
This commit places code to forward unitdata LLC<->RLCMAC. Depends: libosmo-gprs.git Change-Id I1870fa6a264612c5a669bfb832e6e8c0a892cb74 Related: OS#5500 Change-Id: I0e628d9ddaa5ad6a205f07746d4176d1b8df7eb0
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/modem')
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/Makefile.am1
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/rlcmac.h8
2 files changed, 9 insertions, 0 deletions
diff --git a/src/host/layer23/include/osmocom/bb/modem/Makefile.am b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
index 4a91c395..4acb21b0 100644
--- a/src/host/layer23/include/osmocom/bb/modem/Makefile.am
+++ b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
@@ -1,6 +1,7 @@
noinst_HEADERS = \
modem.h \
llc.h \
+ rlcmac.h \
sndcp.h \
vty.h \
$(NULL)
diff --git a/src/host/layer23/include/osmocom/bb/modem/rlcmac.h b/src/host/layer23/include/osmocom/bb/modem/rlcmac.h
new file mode 100644
index 00000000..d1b054f8
--- /dev/null
+++ b/src/host/layer23/include/osmocom/bb/modem/rlcmac.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include <stdbool.h>
+
+struct osmocom_ms;
+
+int modem_rlcmac_init(struct osmocom_ms *ms);
+