aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2014-01-23 16:00:11 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-03-10 13:38:07 +0100
commit8ade45e795d1ee531423d529dfa2c441ece1196a (patch)
tree8c31c34dd28ece47104246de80f3ec5c27ef513a /include
parent3058854535f08e12f6d8dd4f35490ecef40b3040 (diff)
handover: Set basic values for handover, remember the activation reason
Introduce the handover.h/handover.c and initialize handover parameters in OML and remember the activation through RSL.
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/Makefile.am3
-rw-r--r--include/osmo-bts/handover.h10
2 files changed, 12 insertions, 1 deletions
diff --git a/include/osmo-bts/Makefile.am b/include/osmo-bts/Makefile.am
index 456d4165..d7f9421f 100644
--- a/include/osmo-bts/Makefile.am
+++ b/include/osmo-bts/Makefile.am
@@ -1,2 +1,3 @@
noinst_HEADERS = abis.h bts.h bts_model.h gsm_data.h logging.h measurement.h \
- oml.h paging.h rsl.h signal.h vty.h amr.h pcu_if.h pcuif_proto.h
+ oml.h paging.h rsl.h signal.h vty.h amr.h pcu_if.h pcuif_proto.h \
+ handover.h
diff --git a/include/osmo-bts/handover.h b/include/osmo-bts/handover.h
new file mode 100644
index 00000000..1cf5d696
--- /dev/null
+++ b/include/osmo-bts/handover.h
@@ -0,0 +1,10 @@
+#pragma once
+
+enum {
+ HANDOVER_NONE = 0,
+ HANDOVER_ENABLED,
+ HANDOVER_WAIT_FRAME,
+};
+
+void handover_reset(struct gsm_lchan *lchan);
+