From 704cb8680bbdf62cdaa2583fd5072791b7589a90 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 16 Jun 2012 14:57:08 +0800 Subject: [PATCH] gsm_data_shared: add handover related bits for osmo-bts --- openbsc/include/openbsc/gsm_data_shared.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/openbsc/include/openbsc/gsm_data_shared.h b/openbsc/include/openbsc/gsm_data_shared.h index ad9b63f56..4b23613c9 100644 --- a/openbsc/include/openbsc/gsm_data_shared.h +++ b/openbsc/include/openbsc/gsm_data_shared.h @@ -255,6 +255,14 @@ struct gsm_lchan { /* BTS-side ciphering state (rx only, bi-directional, ...) */ uint8_t ciph_state; uint8_t loopback; + struct { + uint8_t active; + uint8_t ref; + /* T3105: PHYS INF retransmission */ + struct osmo_timer_list t3105; + /* counts up to Ny1 */ + unsigned int phys_info_count; + } ho; #endif };