aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
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);
+