aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/abis.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-09-15 13:22:42 +0200
committerpespin <pespin@sysmocom.de>2023-09-19 09:15:08 +0000
commit9aaaacc7aa38f0206034b0b3a4158e64c0fff20a (patch)
tree7e7f31f83b7fa2b01efcd6de79721e12dbb35603 /src/common/abis.c
parent9d9d9e2f27ebe0b4132f125dbc81197f77d752ea (diff)
oml: Store RSL connect related fields in bb_transc
This is a preparation commit towards delaying connection of RSL tcp socket until the BBTRANSC object is OPSTARTed, as it is the case already in nanoBTS. Related: OS#5253 Change-Id: Ia571ec19e9e8f8a6d7c2554642aab0afe1b4b917
Diffstat (limited to 'src/common/abis.c')
-rw-r--r--src/common/abis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/abis.c b/src/common/abis.c
index 10eeafff..9677c1fc 100644
--- a/src/common/abis.c
+++ b/src/common/abis.c
@@ -405,7 +405,7 @@ static struct e1inp_sign_link *sign_link_up(void *unit, struct e1inp_line *line,
}
e1inp_ts_config_sign(sign_ts, line);
trx->rsl_link = e1inp_sign_link_create(sign_ts, E1INP_SIGN_RSL,
- trx, trx->rsl_tei, 0);
+ trx, trx->bb_transc.rsl.tei, 0);
trx_link_estab(trx);
return trx->rsl_link;
}