aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/osmo_bsc.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-06 18:08:43 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 20:06:48 +0100
commitb8781d2cd5175c6de2d7fcb51bc3d736f309320b (patch)
tree28cc45390fe98bf4a21294208ff60aba0b123dfa /openbsc/include/openbsc/osmo_bsc.h
parent9b17c769b9b9d9c52405a2fded1431de1e34591e (diff)
bsc: Start to open a SCCP connection and prepare timers and such.
Diffstat (limited to 'openbsc/include/openbsc/osmo_bsc.h')
-rw-r--r--openbsc/include/openbsc/osmo_bsc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/osmo_bsc.h b/openbsc/include/openbsc/osmo_bsc.h
index 102aae127..1d68cbe0b 100644
--- a/openbsc/include/openbsc/osmo_bsc.h
+++ b/openbsc/include/openbsc/osmo_bsc.h
@@ -5,7 +5,17 @@
#include "bsc_api.h"
+struct sccp_connection;
+
struct osmo_bsc_sccp_con {
+ struct llist_head entry;
+
+ /* SCCP connection realted */
+ struct sccp_connection *sccp;
+ struct bsc_msc_connection *msc_con;
+ struct timer_list sccp_it_timeout;
+ struct timer_list sccp_cc_timeout;
+
uint8_t new_subscriber;
};