aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gsm/prim.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-06-23 15:04:47 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-23 15:04:47 +0200
commit5e924a31a0b6c73f297a61a1e4cb8b40b6f2946c (patch)
treef9ca1e02e196e2a7e0b556fa45fbd95bfbbd0904 /include/osmocom/gsm/prim.h
parent9b21e88367eea8cdf200cf06fae99dec06e712a7 (diff)
introduce GSM primitive definitions
The idea here is to use the osmocom core primitive code ot abstract out primitives for inter-layer comunication in GSM.
Diffstat (limited to 'include/osmocom/gsm/prim.h')
-rw-r--r--include/osmocom/gsm/prim.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/osmocom/gsm/prim.h b/include/osmocom/gsm/prim.h
new file mode 100644
index 00000000..95cbb120
--- /dev/null
+++ b/include/osmocom/gsm/prim.h
@@ -0,0 +1,13 @@
+#ifndef OSMO_GSM_PRIM_H
+#define OSMO_GSM_PRIM_H
+
+#include <osmocom/core/prim.h>
+
+/* enumeration of GSM related SAPs */
+enum osmo_gsm_sap {
+ SAP_GSM_PH = _SAP_GSM_BASE,
+ SAP_GSM_DL,
+ SAP_GSM_MDL,
+};
+
+#endif