aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-09-16 20:14:01 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-09-16 20:53:04 +0800
commit2f9d1ef39ac66acfe7796db985377ef80a627d82 (patch)
tree61cadb2ff436396e2bf15dea795a1b8a7a2a0b97 /openbsc
parent32aaef689d557c4187a0d931742a67955a924da4 (diff)
bsc: Prepare to store the SCCP connection inside the subscriber
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/include/openbsc/gsm_data.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index 016cdaacf..890ccac01 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -4,6 +4,7 @@
#include <sys/types.h>
struct osmo_msc_data;
+struct osmo_bsc_sccp_con;
enum gsm_phys_chan_config {
GSM_PCHAN_NONE,
@@ -243,6 +244,9 @@ struct gsm_subscriber_connection {
/* Are we part of a special "silent" call */
int silent_call;
+ /* bsc structures */
+ struct osmo_bsc_sccp_con *sccp_con;
+
/* back pointers */
int in_release;
struct gsm_lchan *lchan;