From 5e924a31a0b6c73f297a61a1e4cb8b40b6f2946c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 23 Jun 2011 15:04:47 +0200 Subject: 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. --- include/osmocom/gsm/Makefile.am | 2 +- include/osmocom/gsm/prim.h | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 include/osmocom/gsm/prim.h (limited to 'include/osmocom/gsm') diff --git a/include/osmocom/gsm/Makefile.am b/include/osmocom/gsm/Makefile.am index 547933ec..aa7b1a9a 100644 --- a/include/osmocom/gsm/Makefile.am +++ b/include/osmocom/gsm/Makefile.am @@ -1,6 +1,6 @@ osmogsm_HEADERS = a5.h comp128.h gsm0808.h gsm48_ie.h mncc.h rxlev_stat.h \ gsm0480.h gsm48.h gsm_utils.h rsl.h tlv.h abis_nm.h \ - sysinfo.h + sysinfo.h prim.h SUBDIRS = protocol 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 + +/* enumeration of GSM related SAPs */ +enum osmo_gsm_sap { + SAP_GSM_PH = _SAP_GSM_BASE, + SAP_GSM_DL, + SAP_GSM_MDL, +}; + +#endif -- cgit v1.2.3