aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/gsm_data.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2008-12-26 10:20:07 +0000
committerHarald Welte <laforge@gnumonks.org>2008-12-26 10:20:07 +0000
commitad38464728cf1503258288ee9d64600c8adf38ba (patch)
tree742ed21134377c5175a6aeb49acf08688038ad95 /include/openbsc/gsm_data.h
parent3633a6daf9b95c868512b963575c42290bfaa4b5 (diff)
this is the first version that actually talks to the BTS
* initialize OML and RSL based on TEI establish (ACTIVATE_IND) events * fix abis_nm_raw_msg() to not overwrite the OML header with payload * fix debug print statements * fix msgb_dequeue: actually dequeue it from the list ;)
Diffstat (limited to 'include/openbsc/gsm_data.h')
-rw-r--r--include/openbsc/gsm_data.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/openbsc/gsm_data.h b/include/openbsc/gsm_data.h
index 8bb219a11..75de2e72f 100644
--- a/include/openbsc/gsm_data.h
+++ b/include/openbsc/gsm_data.h
@@ -126,5 +126,13 @@ struct gsm_call {
/* the 'local' subscriber */
struct gsm_subscriber *subscr;
};
-
+
+enum gsm_e1_event {
+ EVT_E1_NONE,
+ EVT_E1_OML_UP,
+ EVT_E1_RSL_UP,
+ EVT_E1_OML_DN,
+ EVT_E1_RSL_DN,
+};
+
#endif