summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/layer23/include')
-rw-r--r--src/host/layer23/include/osmocom/Makefile.am3
-rw-r--r--src/host/layer23/include/osmocom/logging.h21
2 files changed, 23 insertions, 1 deletions
diff --git a/src/host/layer23/include/osmocom/Makefile.am b/src/host/layer23/include/osmocom/Makefile.am
index 01c02254..86537aa5 100644
--- a/src/host/layer23/include/osmocom/Makefile.am
+++ b/src/host/layer23/include/osmocom/Makefile.am
@@ -1 +1,2 @@
-noinst_HEADERS = l1ctl.h osmocom_data.h lapdm.h rslms.h layer3.h gsmtap_util.h
+noinst_HEADERS = l1ctl.h osmocom_data.h lapdm.h rslms.h layer3.h \
+ gsmtap_util.h logging.h
diff --git a/src/host/layer23/include/osmocom/logging.h b/src/host/layer23/include/osmocom/logging.h
new file mode 100644
index 00000000..e1bb5833
--- /dev/null
+++ b/src/host/layer23/include/osmocom/logging.h
@@ -0,0 +1,21 @@
+#ifndef _LOGGING_H
+#define _LOGGING_H
+
+#define DEBUG
+#include <osmocore/logging.h>
+
+enum {
+ DRSL,
+ DRR,
+ DMM,
+ DCC,
+ DSMS,
+ DMEAS,
+ DPAG,
+ DLAPDM,
+ DL1C,
+};
+
+extern const struct log_info log_info;
+
+#endif /* _LOGGING_H */